Browse Source

ERR: Added missing std::.

Brad King 22 years ago
parent
commit
6167fa8aa2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmDocumentation.cxx

+ 2 - 2
Source/cmDocumentation.cxx

@@ -193,9 +193,9 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
     if(i->second.length() > 0)
       {
 #ifdef _WIN32
-      fout = new ofstream(i->second.c_str(), ios::out | ios::binary);
+      fout = new std::ofstream(i->second.c_str(), std::ios::out | std::ios::binary);
 #else
-      fout = new ofstream(i->second.c_str(), ios::out);
+      fout = new std::ofstream(i->second.c_str(), std::ios::out);
 #endif
       if(fout)
         {