]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Fix compilation with openmpi < 4.0
authorvsr <vsr@opencascade.com>
Tue, 29 Sep 2020 08:45:28 +0000 (11:45 +0300)
committervsr <vsr@opencascade.com>
Tue, 29 Sep 2020 08:45:28 +0000 (11:45 +0300)
src/ParaMEDMEMTest/MPI2Connector.cxx

index a8a5bc432e3264d32cac33556811a16778bb5518..ddcba11c2bfd70d7e826f398720f48db3f60baf2 100644 (file)
 
 #ifdef OMPI_MAJOR_VERSION 
 #   if OMPI_MAJOR_VERSION >= 4
-#      define MPI_ERROR_HANDLER(var) MPI_Comm_set_errhandler(MPI_COMM_WORLD, var);
+#      define MPI_ERROR_HANDLER(var) MPI_Comm_set_errhandler(MPI_COMM_WORLD, var)
+#   else
+#      define MPI_ERROR_HANDLER(var) MPI_Errhandler_set(MPI_COMM_WORLD, var)
 #   endif
 #else  // MPICH and other versions:
-#   define MPI_ERROR_HANDLER(var) MPI_Errhandler_set(MPI_COMM_WORLD, var);
+#   define MPI_ERROR_HANDLER(var) MPI_Errhandler_set(MPI_COMM_WORLD, var)
 #endif
 
 MPI2Connector::MPI2Connector()