added more String examples

This commit is contained in:
Tom Igoe 2010-07-27 22:59:18 +00:00
parent 7d91fb31c2
commit 0b56973766
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class String
String( const unsigned int, const int base=10 );
String( const long, const int base=10 );
String( const unsigned long, const int base=10 );
~String() { free(_buffer); }
~String() { free(_buffer); _length = _capacity = 0;} //added _length = _capacity = 0;
// operators
const String & operator = ( const String &rhs );