Skip to content

Commit

Permalink
wrap in string
Browse files Browse the repository at this point in the history
  • Loading branch information
swainn committed Mar 19, 2018
1 parent 27ec166 commit dcaecb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmscore/stl/set.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ typedef std::set<std::string> SetStr; ///< short rename
template <class _T>
std::ostream& operator<<(std::ostream& a_output, const std::set<_T>& a_value)
{
a_output << ",size=" << a_value.size();
a_output << std::string(",size=") << a_value.size();
// add loop here like vector
return a_output;
}
Expand Down

0 comments on commit dcaecb8

Please sign in to comment.