X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c5c3fe37097ac1a7b112a573cd09f16f8a798701..742090271ef61483a14939c03c5578578da9090b:/src/smpi/smpi_mpi_dt.cpp diff --git a/src/smpi/smpi_mpi_dt.cpp b/src/smpi/smpi_mpi_dt.cpp index baf46dd2ba..bee1d73bc4 100644 --- a/src/smpi/smpi_mpi_dt.cpp +++ b/src/smpi/smpi_mpi_dt.cpp @@ -1446,7 +1446,7 @@ static void land_func(void *a, void *b, int *length, } else if (*datatype == MPI_UNSIGNED_CHAR) { APPLY_FUNC(a, b, length, unsigned char, LAND_OP); } else if (*datatype == MPI_C_BOOL) { - APPLY_FUNC(a, b, length, _Bool, LAND_OP); + APPLY_FUNC(a, b, length, bool, LAND_OP); } } @@ -1470,7 +1470,7 @@ static void lor_func(void *a, void *b, int *length, } else if (*datatype == MPI_UNSIGNED_CHAR) { APPLY_FUNC(a, b, length, unsigned char, LOR_OP); } else if (*datatype == MPI_C_BOOL) { - APPLY_FUNC(a, b, length, _Bool, LOR_OP); + APPLY_FUNC(a, b, length, bool, LOR_OP); } } @@ -1494,7 +1494,7 @@ static void lxor_func(void *a, void *b, int *length, } else if (*datatype == MPI_UNSIGNED_CHAR) { APPLY_FUNC(a, b, length, unsigned char, LXOR_OP); } else if (*datatype == MPI_C_BOOL) { - APPLY_FUNC(a, b, length, _Bool, LXOR_OP); + APPLY_FUNC(a, b, length, bool, LXOR_OP); } }