X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..e6f836d79ad3def5358ceafe9c4640fbf163cc42:/src/smpi/include/smpi_errhandler.hpp diff --git a/src/smpi/include/smpi_errhandler.hpp b/src/smpi/include/smpi_errhandler.hpp index 30309016ed..cc47cdeab5 100644 --- a/src/smpi/include/smpi_errhandler.hpp +++ b/src/smpi/include/smpi_errhandler.hpp @@ -25,9 +25,9 @@ class Errhandler: public F2C { explicit Errhandler(MPI_File_errhandler_fn *function):file_func_(function){}; explicit Errhandler(MPI_Win_errhandler_fn *function):win_func_(function){}; void ref(); - void call(MPI_Comm comm, int errorcode); - void call(MPI_Win win, int errorcode); - void call(MPI_File file, int errorcode); + void call(MPI_Comm comm, int errorcode) const; + void call(MPI_Win win, int errorcode) const; + void call(MPI_File file, int errorcode) const; static void unref(Errhandler* errhandler); static Errhandler* f2c(int id); };