]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/context/ContextRaw.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Spurious #include.
[simgrid.git] / src / kernel / context / ContextRaw.hpp
index d6b670cd53e3646c356b3ab9eb004e84178914a7..8362aeafbfbf6f4b398603f31bb7a9381e774df8 100644 (file)
@@ -15,9 +15,7 @@
 
 #include "src/kernel/context/ContextSwapped.hpp"
 
-namespace simgrid {
-namespace kernel {
-namespace context {
+namespace simgrid::kernel::context {
 
 /** @brief Fast context switching inspired from SystemV ucontexts.
   *
@@ -39,8 +37,6 @@ class RawContextFactory : public SwappedContextFactory {
 public:
   RawContext* create_context(std::function<void()>&& code, actor::ActorImpl* actor) override;
 };
-} // namespace context
-} // namespace kernel
-} // namespace simgrid
+} // namespace simgrid::kernel::context
 
 #endif