From 4a7a86e949440e6975f4c5feea8772d896a78f57 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 18 Jan 2005 14:02:39 -0500 Subject: [PATCH] COMP: Use cmOStringStream not ostringstream --- Source/cmXMLParser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmXMLParser.cxx b/Source/cmXMLParser.cxx index 8d004a9ee..82be503cb 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()); }