X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8e3525c475262f259a70a3f9a2a4f12d36b3d243..1e9ffea6fdfe24e3268eebcda6fa00d34d6a652b:/src/xbt/OsSemaphore.hpp diff --git a/src/xbt/OsSemaphore.hpp b/src/xbt/OsSemaphore.hpp index b29a66550d..6582689d69 100644 --- a/src/xbt/OsSemaphore.hpp +++ b/src/xbt/OsSemaphore.hpp @@ -8,8 +8,7 @@ #include #include -namespace simgrid { -namespace xbt { +namespace simgrid::xbt { class XBT_PUBLIC OsSemaphore { public: explicit inline OsSemaphore(unsigned int capa) : capa_(capa) {} @@ -33,5 +32,4 @@ private: std::mutex mutex_; std::condition_variable condition_; }; -} // namespace xbt -} // namespace simgrid +} // namespace simgrid::xbt