Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / simgrid / util.hpp
index d022134..734b80b 100644 (file)
@@ -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 <xbt/base.h>
 
-namespace simgrid {
-namespace util {
+namespace simgrid::util {
 
 /** Find a pointer to a value stores in a map (or nullptr) */
 template<typename C, typename K>
@@ -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