]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fix compilation error
authorvsr <vsr@opencascade.com>
Wed, 14 Apr 2010 05:25:38 +0000 (05:25 +0000)
committervsr <vsr@opencascade.com>
Wed, 14 Apr 2010 05:25:38 +0000 (05:25 +0000)
src/Launcher/Launcher.cxx

index 4a4e5f3a057ea064a2ad08342ff2d3c1e7e6079c..59eed5c0600c32124543c1ad0bcd183385a97e90 100644 (file)
@@ -311,9 +311,9 @@ Launcher_cpp::createJobWithFile(const std::string xmlExecuteFile,
 #else
   cmdFile += ".bat";
 #endif
-  ofstream os;
-  os.open(cmdFile.c_str(), ofstream::out );
-  os << "#! /bin/sh" << endl;
+  std::ofstream os;
+  os.open(cmdFile.c_str(), std::ofstream::out );
+  os << "#! /bin/sh" << std::endl;
   os << job_params.Command;
   os.close();