X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f47cd45fcbf51a2498f74ec5efbecef6a8a4ddc4..5dac6a62a7898887c48c6dd5197ca219580cdd08:/src/smpi/include/smpi_f2c.hpp diff --git a/src/smpi/include/smpi_f2c.hpp b/src/smpi/include/smpi_f2c.hpp index 856525bc14..1f70e9b2b2 100644 --- a/src/smpi/include/smpi_f2c.hpp +++ b/src/smpi/include/smpi_f2c.hpp @@ -35,7 +35,7 @@ protected: if (not f2c_lookup_) f2c_lookup_ = std::make_unique(); } - int f2c_id() { return my_f2c_id_; } + int f2c_id() const { return my_f2c_id_; } static int global_f2c_id() { return f2c_id_; } static void f2c_id_increment() { f2c_id_++; } @@ -56,7 +56,7 @@ public: static F2C* f2c(int id); static void finish_initialization() { num_default_handles_ = f2c_lookup_->size(); } static f2c_lookup_type::size_type get_num_default_handles() { return num_default_handles_; } - std::string call_location(){ return call_location_; } + const std::string& call_location() const { return call_location_; } }; }