COMP: Fix cmCTestHG for old HP compiler
The compiler does not have a fully compliant std::string.
This commit is contained in:
parent
a4dff91c35
commit
ea00bb990b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue