From 67285f9a7674734c3e0afdb0cf9f84b5b9a1c32d Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Mon, 15 Dec 2003 17:28:46 -0500 Subject: [PATCH] ERR: STD fixes --- Source/cmCTest.cxx | 4 ++-- Source/cmCTest.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index da77921b0..3f5407a45 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2956,7 +2956,7 @@ int cmCTest::RunConfigurationScript() return 0; } -void cmCTest::StartXML(ostream& ostr) +void cmCTest::StartXML(std::ostream& ostr) { ostr << "\n" << "" << std::endl; } -void cmCTest::EndXML(ostream& ostr) +void cmCTest::EndXML(std::ostream& ostr) { ostr << "" << std::endl; } diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 8e5e2fbd1..4a98c30f6 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -308,10 +308,10 @@ private: const char* GetTestStatus(int status); //! Start CTest XML output file - void StartXML(ostream& ostr); + void StartXML(std::ostream& ostr); //! 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, // log holds the output and results hold the different memmory errors.