Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 's4u_enforce' into 'master'
[simgrid.git] / src / kernel / context / ContextUnix.hpp
index 48f13251ab7dbc2e4c9af78b19e5255d8ad159cc..69d6a5ca3fc3afd251d7ba6a8e15ba27cf80fb71 100644 (file)
@@ -19,9 +19,7 @@
 #include "src/internal_config.h"
 #include "src/kernel/context/ContextSwapped.hpp"
 
-namespace simgrid {
-namespace kernel {
-namespace context {
+namespace simgrid::kernel::context {
 
 class UContext : public SwappedContext {
 public:
@@ -37,8 +35,6 @@ class UContextFactory : public SwappedContextFactory {
 public:
   UContext* create_context(std::function<void()>&& code, actor::ActorImpl* actor) override;
 };
-} // namespace context
-} // namespace kernel
-} // namespace simgrid
+} // namespace simgrid::kernel::context
 
 #endif