summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLParser.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-01-18 19:02:39 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-01-18 19:02:39 (GMT)
commit4a7a86e949440e6975f4c5feea8772d896a78f57 (patch)
treef3ce1c2cbbf6b633ce2934c68905a65c38ab8fba /Source/cmXMLParser.cxx
parentdcadffbe00c29d8a55d6d3e58cbc46caddaf1dcb (diff)
downloadCMake-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.cxx2
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());
}