Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sthread: Add a way to verify accesses to non-reentrant data structures
[simgrid.git] / src / mc / transition / TransitionSynchro.hpp
index bea07f268f94a512bbe81d78937feabe5bdd62d8..87e4865b38119d54d0c64d67ae20486eab1a0987 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2015-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -8,8 +8,9 @@
 
 #include "src/mc/transition/Transition.hpp"
 
-namespace simgrid {
-namespace mc {
+#include <cstdint>
+
+namespace simgrid::mc {
 
 class BarrierTransition : public Transition {
   unsigned bar_;
@@ -40,7 +41,6 @@ public:
   bool depends(const Transition* other) const override;
 };
 
-} // namespace mc
-} // namespace simgrid
+} // namespace simgrid::mc
 
 #endif