From 6bc213d56af4db3812f14dcb4e0caae96dec46fb Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 10 Jan 2019 22:17:19 +0100 Subject: [PATCH] Access static member with "::". --- src/kernel/routing/RoutedZone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } } -- 2.20.1