mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
COMP: Fix cmCTestHG for old HP compiler
The compiler does not have a fully compliant std::string.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user