Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the need of pthread_mutex in mmalloc, to allow its use with sthread
[simgrid.git] / src / mc / VisitedState.hpp
index 4fe702f..33f3d1a 100644 (file)
@@ -6,14 +6,13 @@
 #ifndef SIMGRID_MC_VISITED_STATE_HPP
 #define SIMGRID_MC_VISITED_STATE_HPP
 
-#include "src/mc/mc_state.hpp"
+#include "src/mc/api/State.hpp"
 #include "src/mc/sosp/Snapshot.hpp"
 
 #include <cstddef>
 #include <memory>
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 class XBT_PRIVATE VisitedState {
 public:
@@ -37,7 +36,6 @@ private:
   void prune();
 };
 
-}
-}
+} // namespace simgrid::mc
 
 #endif