Kaynağa Gözat

ERR: STD fixes

Andy Cedilnik 22 yıl önce
ebeveyn
işleme
67285f9a76
2 değiştirilmiş dosya ile 4 ekleme ve 4 silme
  1. 2 2
      Source/cmCTest.cxx
  2. 2 2
      Source/cmCTest.h

+ 2 - 2
Source/cmCTest.cxx

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

+ 2 - 2
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.