X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/07c12189c716ea527ddcf8f8b55983213dead2bf..de010b649ad8a8d1e0ac3987756340633c5d84a2:/src/kernel/routing/FloydZone.cpp diff --git a/src/kernel/routing/FloydZone.cpp b/src/kernel/routing/FloydZone.cpp index 1c20629d16..000db3f979 100644 --- a/src/kernel/routing/FloydZone.cpp +++ b/src/kernel/routing/FloydZone.cpp @@ -65,7 +65,7 @@ void FloydZone::getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg route->gw_dst = route_stack.front()->gw_dst; } - sg_netcard_t prev_dst_gw = nullptr; + sg_netpoint_t prev_dst_gw = nullptr; while (!route_stack.empty()) { sg_platf_route_cbarg_t e_route = route_stack.back(); route_stack.pop_back(); @@ -181,7 +181,7 @@ void FloydZone::seal() e_route = xbt_new0(s_sg_platf_route_cbarg_t, 1); e_route->gw_src = nullptr; e_route->gw_dst = nullptr; - e_route->link_list = new std::vector(); + e_route->link_list = new std::vector(); e_route->link_list->push_back(surf_network_model->loopback_); TO_FLOYD_LINK(i, i) = e_route; TO_FLOYD_PRED(i, i) = i;