]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
RNV: replace 'and' by '&&'
authormnt <mnt@opencascade.com>
Fri, 7 Jul 2017 09:23:17 +0000 (12:23 +0300)
committermnt <mnt@opencascade.com>
Fri, 7 Jul 2017 09:23:17 +0000 (12:23 +0300)
src/ParallelContainer/SALOME_ParallelContainer_i.cxx

index 14a6129349da0061d327af399049a825514c9e4f..7a593f6654ee1c554958231df8c7eed34e4fa9f1 100644 (file)
@@ -444,7 +444,7 @@ Engines_Parallel_Container_i::create_component_instance_env(const char*genericRe
   void* handle = _library_map[impl_name];
   if (handle)
     type_of_lib = "cpp";
-  if (_library_map.count(aCompName) != 0 and !handle)
+  if (_library_map.count(aCompName) != 0 && !handle)
     type_of_lib = "python";
   
   if (type_of_lib == "Not Loaded")