Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / mc / transition / TransitionAny.hpp
index 25f67dd..2774d28 100644 (file)
@@ -12,8 +12,7 @@
 #include <sstream>
 #include <string>
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 class TestAnyTransition : public Transition {
   std::vector<Transition*> transitions_;
@@ -37,7 +36,6 @@ public:
   Transition* get_current_transition() const { return transitions_.at(times_considered_); }
 };
 
-} // namespace mc
-} // namespace simgrid
+} // namespace simgrid::mc
 
 #endif