COMP: Fix cmCTestHG for old HP compiler

The compiler does not have a fully compliant std::string.
This commit is contained in:
Brad King 2009-07-10 13:08:54 -04:00
parent a4dff91c35
commit ea00bb990b
1 changed files with 2 additions and 2 deletions

View File

@ -280,12 +280,12 @@ private:
{
if(this->CData[i] != ' ')
{
currPath.push_back(this->CData[i]);
currPath += this->CData[i];
}
else
{
output.push_back(currPath);
currPath.erase();
currPath = "";
}
}
output.push_back(currPath);