added more String examples

This commit is contained in:
Tom Igoe 2010-07-27 22:59:18 +00:00
parent e871ae5236
commit 58f043e0f3
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 );