Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / simgrid / util.hpp
index 944a895..734b80b 100644 (file)
@@ -1,20 +1,22 @@
-/* Copyright (c) 2015. The SimGrid Team.
- * All rights reserved. */
+/* Copyright (c) 2015-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. */
 
 #ifndef SIMGRID_UTIL_HTPP
 #define SIMGRID_UTIL_HTPP
 
-#include <algorithm>
+#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>
-inline
+inline XBT_PRIVATE
 typename C::mapped_type* find_map_ptr(C& c, K const& k)
 {
-  typename C::iterator i = c.find(k);
+  auto i = c.find(k);
   if (i == c.end())
     return nullptr;
   else
@@ -22,7 +24,7 @@ typename C::mapped_type* find_map_ptr(C& c, K const& k)
 }
 
 template<typename C, typename K>
-inline
+inline XBT_PRIVATE
 typename C::mapped_type const* find_map_ptr(C const& c, K const& k)
 {
   typename C::const_iterator i = c.find(k);
@@ -32,7 +34,6 @@ typename C::mapped_type const* find_map_ptr(C const& c, K const& k)
     return &i->second;
 }
 
-}
-}
+} // namespace simgrid::util
 
 #endif