Fix error sin string builder and path.

This commit is contained in:
castano
2009-01-09 05:45:36 +00:00
parent f03d702d84
commit 2ed4fee447
2 changed files with 3 additions and 3 deletions

View File

@ -209,7 +209,7 @@ StringBuilder::StringBuilder( const StringBuilder & s ) : m_size(0), m_str(NULL)
}
/** Copy string. */
StringBuilder::StringBuilder( const char * s )
StringBuilder::StringBuilder( const char * s ) : m_size(0), m_str(NULL)
{
copy(s);
}