ERR: STD fixes

This commit is contained in:
Andy Cedilnik 2003-12-15 17:28:46 -05:00
parent 5b232ded15
commit 67285f9a76
2 changed files with 4 additions and 4 deletions

View File

@ -2956,7 +2956,7 @@ int cmCTest::RunConfigurationScript()
return 0; return 0;
} }
void cmCTest::StartXML(ostream& ostr) void cmCTest::StartXML(std::ostream& ostr)
{ {
ostr << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" ostr << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
<< "<Site BuildName=\"" << m_DartConfiguration["BuildName"] << "<Site BuildName=\"" << m_DartConfiguration["BuildName"]
@ -2965,7 +2965,7 @@ void cmCTest::StartXML(ostream& ostr)
<< m_DartConfiguration["Site"] << "\">" << std::endl; << m_DartConfiguration["Site"] << "\">" << std::endl;
} }
void cmCTest::EndXML(ostream& ostr) void cmCTest::EndXML(std::ostream& ostr)
{ {
ostr << "</Site>" << std::endl; ostr << "</Site>" << std::endl;
} }

View File

@ -308,10 +308,10 @@ private:
const char* GetTestStatus(int status); const char* GetTestStatus(int status);
//! Start CTest XML output file //! Start CTest XML output file
void StartXML(ostream& ostr); void StartXML(std::ostream& ostr);
//! End CTest XML output file //! End CTest XML output file
void EndXML(ostream& ostr); void EndXML(std::ostream& ostr);
//! Parse Valgrind/Purify/Bounds Checker result out of the output string. After running, //! Parse Valgrind/Purify/Bounds Checker result out of the output string. After running,
// log holds the output and results hold the different memmory errors. // log holds the output and results hold the different memmory errors.