From 0afea9ca4870d1137966c9f37607f7ea893b1944 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Sat, 26 Aug 2017 01:25:55 +0200 Subject: [PATCH] this has to be ordered as MPI allows access to items with an index --- src/smpi/include/smpi_info.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/smpi/include/smpi_info.hpp b/src/smpi/include/smpi_info.hpp index 2812182e34..61eccb2272 100644 --- a/src/smpi/include/smpi_info.hpp +++ b/src/smpi/include/smpi_info.hpp @@ -10,14 +10,14 @@ #include "smpi/smpi.h" #include "smpi_f2c.hpp" #include -#include +#include namespace simgrid{ namespace smpi{ class Info : public F2C{ private: - std::unordered_map map_; + std::map map_; int refcount_ = 1; public: -- 2.20.1