Shoot, I was trying to hunt down a bug that wasn't even caused by the sstream implementation! Back out some of the previous patches

This commit is contained in:
ehofman
2003-10-20 19:53:35 +00:00
parent 19815c3bce
commit ea1b70191c

View File

@@ -10,8 +10,7 @@ namespace std {
class ostringstream : public ostrstream {
public:
~ostringstream() { delete ostrstream::str(); }
std::string str() { return string(ostrstream::str()) + '\0'; }
std::string str() { return string(ostrstream::str()); }
};