Browse Source

Fix namespace problem

Andy Cedilnik 23 years ago
parent
commit
a77f9f0715
1 changed files with 1 additions and 1 deletions
  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;