X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e1fa53a0d0ae78cebae28364e6802aa1db1cba3..8d62bb541920e2e4e0f7d1fa26a7f6eec79370c2:/src/simgrid/util.hpp diff --git a/src/simgrid/util.hpp b/src/simgrid/util.hpp index d022134997..734b80b1ce 100644 --- a/src/simgrid/util.hpp +++ b/src/simgrid/util.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2020. The SimGrid Team. +/* Copyright (c) 2015-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,8 +9,7 @@ #include -namespace simgrid { -namespace util { +namespace simgrid::util { /** Find a pointer to a value stores in a map (or nullptr) */ template @@ -35,7 +34,6 @@ typename C::mapped_type const* find_map_ptr(C const& c, K const& k) return &i->second; } -} // namespace util -} // namespace simgrid +} // namespace simgrid::util #endif