X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/acbe12568e89a163cdee064b66c7a9b2e9846ff9..848f2365a5b3ecb2966dcb1c39fbb6d99acabc3e:/src/simgrid/util.hpp diff --git a/src/simgrid/util.hpp b/src/simgrid/util.hpp index 195070742f..272b69c625 100644 --- a/src/simgrid/util.hpp +++ b/src/simgrid/util.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015. The SimGrid Team. +/* Copyright (c) 2015-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,8 +7,6 @@ #ifndef SIMGRID_UTIL_HTPP #define SIMGRID_UTIL_HTPP -#include - #include namespace simgrid { @@ -19,7 +17,7 @@ template 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 @@ -37,7 +35,7 @@ typename C::mapped_type const* find_map_ptr(C const& c, K const& k) return &i->second; } -} -} +} // namespace util +} // namespace simgrid #endif