X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..8c6bbb14f44b8daed5ea43d80880c6bf2155118b:/src/kernel/context/ContextRaw.hpp diff --git a/src/kernel/context/ContextRaw.hpp b/src/kernel/context/ContextRaw.hpp index f9b30e04bd..dfa2c03281 100644 --- a/src/kernel/context/ContextRaw.hpp +++ b/src/kernel/context/ContextRaw.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-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. */ @@ -11,13 +11,11 @@ #include #include -#include +#include "src/xbt/parmap.hpp" #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&& code, actor::ActorImpl* actor) override; }; -} // namespace context -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::context #endif