X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5eb856761d5f073b07eac25c05012cfa8075e1f1..c5a48995c0e24c9ae38c3d14203388523c565a5b:/src/smpi/smpi_group.cpp?ds=sidebyside diff --git a/src/smpi/smpi_group.cpp b/src/smpi/smpi_group.cpp index fd78c2c86d..adb199d040 100644 --- a/src/smpi/smpi_group.cpp +++ b/src/smpi/smpi_group.cpp @@ -382,9 +382,9 @@ int Group::range_excl(int n, int ranges[][3], MPI_Group * newgroup){ MPI_Group Group::f2c(int id) { if(id == -2) { return MPI_GROUP_EMPTY; - } else if(F2C::f2c_lookup_ != nullptr && id >= 0) { + } else if(F2C::f2c_lookup() != nullptr && id >= 0) { char key[KEY_SIZE]; - return static_cast(xbt_dict_get_or_null(F2C::f2c_lookup_, get_key(key, id))); + return static_cast(xbt_dict_get_or_null(F2C::f2c_lookup(), get_key(key, id))); } else { return static_cast(MPI_GROUP_NULL); }