From: Arnaud Giersch Date: Thu, 10 Jan 2019 21:17:19 +0000 (+0100) Subject: Access static member with "::". X-Git-Tag: v3_22~598 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6bc213d56af4db3812f14dcb4e0caae96dec46fb?hp=ba65a6cdd5903b715aec626856f15adfce2be2cd Access static member with "::". --- diff --git a/src/kernel/routing/RoutedZone.cpp b/src/kernel/routing/RoutedZone.cpp index aac90ff3c5..6905ed9720 100644 --- a/src/kernel/routing/RoutedZone.cpp +++ b/src/kernel/routing/RoutedZone.cpp @@ -202,7 +202,7 @@ void RoutedZone::add_route_check_params(NetPoint* src, NetPoint* dst, NetPoint* dstName, gw_dst->get_cname()); } - get_iface()->on_route_creation(symmetrical, src, dst, gw_src, gw_dst, link_list); + simgrid::s4u::NetZone::on_route_creation(symmetrical, src, dst, gw_src, gw_dst, link_list); } } }