*** empty log message ***

This commit is contained in:
David Rose 2001-01-30 02:44:00 +00:00
parent de5a933a9c
commit d7628d3319

View File

@ -69,6 +69,13 @@ public:
{ {
_owns_str = false; _owns_str = false;
} }
// str() doesn't seem to compile cross-platform too reliably--Irix
// doesn't define pcount() for some reason. On the other hand, why
// are you calling str() on a stringstream? Just use an
// ostringstream.
/*
string str() { string str() {
int length = pcount(); int length = pcount();
char *s = strstream::str(); char *s = strstream::str();
@ -78,6 +85,7 @@ public:
} }
return result; return result;
} }
*/
private: private:
bool _owns_str; bool _owns_str;