Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this has to be ordered as MPI allows access to items with an index
[simgrid.git] / src / smpi / include / smpi_info.hpp
index 2812182..61eccb2 100644 (file)
 #include "smpi/smpi.h"
 #include "smpi_f2c.hpp"
 #include <string>
-#include <unordered_map>
+#include <map>
 
 namespace simgrid{
 namespace smpi{
 
 class Info : public F2C{
   private:
-    std::unordered_map<std::string, std::string> map_;
+    std::map<std::string, std::string> map_;
     int refcount_ = 1;
 
   public: