X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/43f7ca1cac5ab1858e318fdd6239d0a0c3b3d893..d3a5b5e5113cf4438faf96f6dc442240c5b9d085:/src/smpi/include/smpi_f2c.hpp diff --git a/src/smpi/include/smpi_f2c.hpp b/src/smpi/include/smpi_f2c.hpp index 5b77cab24b..207c699c4f 100644 --- a/src/smpi/include/smpi_f2c.hpp +++ b/src/smpi/include/smpi_f2c.hpp @@ -9,7 +9,7 @@ #ifndef SMPI_F2C_HPP_INCLUDED #define SMPI_F2C_HPP_INCLUDED -#include "xbt/dict.h" +#include #define KEY_SIZE (sizeof(int) * 2 + 1) @@ -20,27 +20,26 @@ class F2C { private: // We use a single lookup table for every type. // Beware of collisions if id in mpif.h is not unique - static xbt_dict_t f2c_lookup_; + static std::unordered_map* f2c_lookup_; static int f2c_id_; protected: - static xbt_dict_t f2c_lookup(); - static void set_f2c_lookup(xbt_dict_t dict); + static std::unordered_map* f2c_lookup(); + static void set_f2c_lookup(std::unordered_map* map); static int f2c_id(); static void f2c_id_increment(); public: static char* get_key(char* key, int id); static char* get_key_id(char* key, int id); static void delete_lookup(); - static xbt_dict_t lookup(); + static std::unordered_map* lookup(); //Override these to handle specific values. int add_f(); static void free_f(int id); int c2f(); - //This method should be overriden in all subclasses - //to avoid casting the result when calling it. - //For the default one, the MPI_*_NULL returned is assumed to be NULL. + // This method should be overridden in all subclasses to avoid casting the result when calling it. + // For the default one, the MPI_*_NULL returned is assumed to be NULL. static F2C* f2c(int id); };