diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-01-18 19:02:39 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-01-18 19:02:39 (GMT) |
commit | 4a7a86e949440e6975f4c5feea8772d896a78f57 (patch) | |
tree | f3ce1c2cbbf6b633ce2934c68905a65c38ab8fba /Source/cmXMLParser.cxx | |
parent | dcadffbe00c29d8a55d6d3e58cbc46caddaf1dcb (diff) | |
download | CMake-4a7a86e949440e6975f4c5feea8772d896a78f57.zip CMake-4a7a86e949440e6975f4c5feea8772d896a78f57.tar.gz CMake-4a7a86e949440e6975f4c5feea8772d896a78f57.tar.bz2 |
COMP: Use cmOStringStream not ostringstream
Diffstat (limited to 'Source/cmXMLParser.cxx')
-rw-r--r-- | Source/cmXMLParser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXMLParser.cxx b/Source/cmXMLParser.cxx index 8d004a9..82be503 100644 --- a/Source/cmXMLParser.cxx +++ b/Source/cmXMLParser.cxx @@ -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()); } |