COMP: Use cmOStringStream not ostringstream

This commit is contained in:
Andy Cedilnik 2005-01-18 14:02:39 -05:00
parent dcadffbe00
commit 4a7a86e949
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ int cmXMLParser::ParseFile(const char* file)
return 0;
}
ostringstream str;
cmOStringStream str;
str << ifs.rdbuf();
return this->Parse(str.str().c_str());
}