X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/093b834960aa7457d220feacad9542c4606ed8a0..74c1bf2b26c5a3aa0d8c29674dc12993e7c0de15:/src/surf/network_interface.cpp?ds=sidebyside diff --git a/src/surf/network_interface.cpp b/src/surf/network_interface.cpp index 2944bc3e04..d6f78f78e5 100644 --- a/src/surf/network_interface.cpp +++ b/src/surf/network_interface.cpp @@ -20,7 +20,7 @@ namespace simgrid { /* List of links */ std::unordered_map* LinkImpl::links = new std::unordered_map(); - LinkImpl* LinkImpl::byName(const char* name) + LinkImpl* LinkImpl::byName(std::string name) { auto link = links->find(name); return link == links->end() ? nullptr : link->second; @@ -35,7 +35,7 @@ namespace simgrid { { LinkImpl** res = xbt_new(LinkImpl*, (int)links->size()); int i = 0; - for (auto kv : *links) { + for (auto const& kv : *links) { res[i] = kv.second; i++; } @@ -44,7 +44,7 @@ namespace simgrid { /** @brief destructor of the static data */ void LinkImpl::linksExit() { - for (auto kv : *links) + for (auto const& kv : *links) (kv.second)->destroy(); delete links; }