X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88353521e66f28bf0c4a5afd9772a1ebb3a71963..347996b4a10c4e8579080692afa60e0afb88b60a:/src/surf/surf_routing.cpp?ds=sidebyside diff --git a/src/surf/surf_routing.cpp b/src/surf/surf_routing.cpp index d0e9f2e91f..3028a23b2a 100644 --- a/src/surf/surf_routing.cpp +++ b/src/surf/surf_routing.cpp @@ -8,10 +8,8 @@ #include "surf_routing_private.hpp" #include "surf_routing_cluster.hpp" -#include "simgrid/platf_interface.h" // platform creation API internal interface #include "simgrid/sg_config.h" #include "storage_interface.hpp" -#include "src/surf/platform.hpp" #include "surf/surfxml_parse_values.h" #include "src/surf/surf_routing_cluster_torus.hpp" @@ -20,6 +18,7 @@ #include "src/surf/surf_routing_floyd.hpp" #include "src/surf/surf_routing_full.hpp" #include "src/surf/surf_routing_vivaldi.hpp" +#include "src/surf/xml/platf.hpp" // FIXME: move that back to the parsing area #include @@ -79,7 +78,7 @@ namespace surf { char *route_name = bprintf("%s#%s", src->name(), dst->name()); if (bypassRoutes_->find(route_name) != bypassRoutes_->end()) { bypassedRoute = bypassRoutes_->at(route_name); - XBT_DEBUG("Found a bypass route with %ld links",bypassedRoute->size()); + XBT_DEBUG("Found a bypass route with %zu links",bypassedRoute->size()); } free(route_name); return bypassedRoute;