Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Fix includes for PAPI.
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Tue, 5 Jul 2016 14:47:20 +0000 (16:47 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Tue, 5 Jul 2016 14:47:20 +0000 (16:47 +0200)
After a recent refactoring, some includes went missing.

src/smpi/private.hpp
src/smpi/smpi_global.cpp

index 0181dac..a5c1aed 100644 (file)
@@ -6,8 +6,9 @@
 #ifndef SMPI_PRIVATE_HPP
 #define SMPI_PRIVATE_HPP
 
-#include <unordered_map>
 #include "src/instr/instr_smpi.h"
+#include <unordered_map>
+#include <vector>
 
 /**
  * Get the address of the beginning of the memory page where addr is located.
index 1c84fbc..fd2d8f0 100644 (file)
 #include "src/msg/msg_private.h"
 #include "src/simix/SynchroComm.hpp"
 
-
-#include <float.h>              /* DBL_MAX */
+#include <float.h> /* DBL_MAX */
+#include <fstream>
+#include <map>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <fstream>
+#include <string>
+#include <vector>
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
 #include <boost/tokenizer.hpp>