Tagged Questions
2
votes
3answers
922 views
How would std::ostringstream convert to bool?
I stumbled across this code.
std::ostringstream str;
/// (some usage)
assert( ! str );
What does ostringstream signify when used in a bool context?
Is this possibly an incorrect usage that ...