Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add operation to plugin doc
[simgrid.git] / src / mc / transition / TransitionAny.hpp
index 25f67dd0cc9d643d231ac75867b6884eed33a825..df5954e6bae83f2c65deb02ea21f6fb132405073 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. */
@@ -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