std::ostream
's have a flush()
method which:
Writes uncommitted changes to the underlying output sequence.
What does that mean for an std::stringstream
? If I understand correctly, it means there's nothing to be done for such a stream. Is this true?