]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/include/smpi_info.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add another message useful for debugging here
[simgrid.git] / src / smpi / include / smpi_info.hpp
index 2812182e3427782731bad2fa7f544949a2ecfec1..61eccb2272065ef6beced31c6e49ba2c52f400ad 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: