X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/400993260dd878fe2efe0650baeb255502bce927..0feb1e5eca7b9473754b98405e36346804825f70:/src/simdag/sd_workstation.cpp diff --git a/src/simdag/sd_workstation.cpp b/src/simdag/sd_workstation.cpp index e4eac88da3..5601beea36 100644 --- a/src/simdag/sd_workstation.cpp +++ b/src/simdag/sd_workstation.cpp @@ -26,7 +26,7 @@ SD_link_t *SD_route_get_list(sg_host_t src, sg_host_t dst) int cpt=0; SD_link_t* list = xbt_new(SD_link_t, route.size()); - for (auto link : route) { + for (const auto& link : route) { list[cpt] = link; cpt++; } @@ -82,7 +82,7 @@ double SD_route_get_bandwidth(sg_host_t src, sg_host_t dst) std::vector route; src->routeTo(dst, &route, nullptr); - for (auto link : route) { + for (const auto& link : route) { double bandwidth = sg_link_bandwidth(link); if (bandwidth < min_bandwidth || min_bandwidth < 0.0) min_bandwidth = bandwidth;