Procházet zdrojové kódy

Fix namespace problem

Andy Cedilnik před 23 roky
rodič
revize
a77f9f0715
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      Source/cmWriteFileCommand.cxx

+ 1 - 1
Source/cmWriteFileCommand.cxx

@@ -46,7 +46,7 @@ bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn)
                          fileName.c_str());
     return false;
     }
-  file << message << endl;
+  file << message << std::endl;
   file.close();
 
   return true;