Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Missing includes (for gcc-14?)
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 10 Jul 2023 09:44:21 +0000 (11:44 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 10 Jul 2023 10:10:17 +0000 (12:10 +0200)
src/mc/remote/Channel.cpp
src/mc/transition/TransitionAny.hpp
src/simgrid/module.cpp
src/smpi/internals/smpi_shared.cpp

index 63a6393..7e3bfb9 100644 (file)
@@ -6,6 +6,7 @@
 #include "src/mc/remote/Channel.hpp"
 #include <xbt/log.h>
 
+#include <algorithm>
 #include <cerrno>
 #include <cstring>
 #include <sys/socket.h>
index 494006b..96a7212 100644 (file)
@@ -10,6 +10,7 @@
 #include "src/mc/transition/Transition.hpp"
 #include "src/mc/transition/TransitionComm.hpp"
 
+#include <algorithm>
 #include <sstream>
 #include <string>
 
index 5724971..e3095bc 100644 (file)
@@ -9,6 +9,7 @@
 #include "src/simgrid/module.hpp"
 #include "src/simgrid/sg_config.hpp"
 
+#include <algorithm>
 #include <sstream>
 
 XBT_LOG_NEW_CATEGORY(plugin, "Common category for the logging of all plugins");
index 10ab0ad..42108cd 100644 (file)
@@ -33,6 +33,7 @@
  *                                                                    \ |  |
  *                                                                      ----
  */
+#include <algorithm>
 #include <array>
 #include <cstring>
 #include <map>