X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ebcb91551aa801d2353d854ffe9c1d1bf72d7db9..74c1bf2b26c5a3aa0d8c29674dc12993e7c0de15:/src/kernel/routing/FloydZone.cpp diff --git a/src/kernel/routing/FloydZone.cpp b/src/kernel/routing/FloydZone.cpp index 863c876583..7c5997237e 100644 --- a/src/kernel/routing/FloydZone.cpp +++ b/src/kernel/routing/FloydZone.cpp @@ -21,7 +21,7 @@ namespace simgrid { namespace kernel { namespace routing { -FloydZone::FloydZone(NetZone* father, const char* name) : RoutedZone(father, name) +FloydZone::FloydZone(NetZone* father, std::string name) : RoutedZone(father, name) { predecessorTable_ = nullptr; costTable_ = nullptr; @@ -74,7 +74,7 @@ void FloydZone::getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg getGlobalRoute(prev_dst_gw, e_route->gw_src, route->link_list, lat); } - for (auto link : *e_route->link_list) { + for (auto const& link : *e_route->link_list) { route->link_list->push_back(link); if (lat) *lat += link->latency();