Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / mc / mc_pattern.hpp
index a901c14b2df9fa2fb1c47c2b5ef160be2b4df608..8702a24e64ef9772e02b71e85e2ca572e060bdd3 100644 (file)
@@ -9,8 +9,7 @@
 #include "src/kernel/activity/CommImpl.hpp"
 #include "src/mc/remote/RemotePtr.hpp"
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 /* On every state, each actor has an entry of the following type.
  * This represents both the actor and its transition because
@@ -51,7 +50,6 @@ public:
   void set_done() { this->state_ = InterleavingType::done; }
 };
 
-} // namespace mc
-} // namespace simgrid
+} // namespace simgrid::mc
 
 #endif