std::strstream::freeze (3) Linux Manual Page
std::strstream::freeze – std::strstream::freeze Synopsis void freeze(bool flag = true); If the stream is using a dynamically-allocated array for output, disables (flag == true) or enables (flag == false) automatic allocation/deallocation of the buffer. Effectively calls rdbuf()->freeze(flag) Notes After a call to str(), dynamic streams become frozen automatically. A call to freeze(false) is required before exiting…
