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

index 318c0191c6d12cb4113ede503ca515ef7617be6a..29287cf2f4b66bb992e39e7c1d4cc67b8a735c20 100644 (file)
@@ -432,7 +432,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")