From: barate Date: Wed, 20 Apr 2011 14:21:03 +0000 (+0000) Subject: Fixed compilation problem with libbatch 1.3.0rc1 X-Git-Tag: V6_3_0b1~19 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=20bba8328712a8e77b8b97e6a714ade16c015f60;p=modules%2Fkernel.git Fixed compilation problem with libbatch 1.3.0rc1 --- diff --git a/src/Launcher/Launcher_Job.cxx b/src/Launcher/Launcher_Job.cxx index 7b2526e61..274b1f844 100644 --- a/src/Launcher/Launcher_Job.cxx +++ b/src/Launcher/Launcher_Job.cxx @@ -24,7 +24,6 @@ #ifdef WITH_LIBBATCH #include -#include #endif Launcher::Job::Job() @@ -511,7 +510,7 @@ Launcher::Job::common_job_params() // Specific parameters std::map::iterator it = _specific_parameters.find("LoalLevelerJobType"); if (it != _specific_parameters.end()) - params[Batch::LL_JOBTYPE] = it->second; + params["LL_JOBTYPE"] = it->second; return params; }