COMP: Some STL implementation do not provide clear on std::string

This commit is contained in:
Mathieu Malaterre 2006-03-06 13:02:13 -05:00
parent e34d666fc7
commit 73e1d9abd9
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ const char* Directory::GetPath() const
//----------------------------------------------------------------------------
void Directory::Clear()
{
this->Internal->Path.clear();
//this->Internal->Path.clear();
this->Internal->Path = "";
this->Internal->Files.clear();
}