*** empty log message ***

This commit is contained in:
David Rose 2001-01-29 19:00:14 +00:00
parent e5e955af8e
commit ca5d9619bd
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,6 @@ using namespace std;
exptp template class expcl classname;
#else
#define EXPORT_TEMPLATE_CLASS(expcl, exptp, classname)
#define INLINE inline
#endif
// We define the macro PUBLISHED to mark C++ methods that are to be

View File

@ -70,8 +70,9 @@ public:
_owns_str = false;
}
string str() {
int length = pcount();
char *s = strstream::str();
string result(s);
string result(s, length);
if (_owns_str) {
delete[] s;
}