X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/081a38309c637c51f527b507704b65d6ce1ac805..f409d6f711ba652a6fd78e185791cf7870b6765d:/include/simgrid/kernel/routing/RoutedZone.hpp diff --git a/include/simgrid/kernel/routing/RoutedZone.hpp b/include/simgrid/kernel/routing/RoutedZone.hpp index 6a2e142ebc..5cf45eaf04 100644 --- a/include/simgrid/kernel/routing/RoutedZone.hpp +++ b/include/simgrid/kernel/routing/RoutedZone.hpp @@ -52,8 +52,8 @@ class XBT_PRIVATE RoutedZone : public NetZoneImpl { public: explicit RoutedZone(NetZoneImpl* father, const std::string& name, resource::NetworkModel* netmodel); - void get_graph(const s_xbt_graph_t* graph, std::map* nodes, - std::map* edges) override; + void get_graph(const s_xbt_graph_t* graph, std::map>* nodes, + std::map>* edges) override; protected: RouteCreationArgs* new_extended_route(RoutingMode hierarchy, NetPoint* gw_src, NetPoint* gw_dst, @@ -73,8 +73,8 @@ protected: } // namespace simgrid XBT_PRIVATE xbt_node_t new_xbt_graph_node(const s_xbt_graph_t* graph, const char* name, - std::map* nodes); + std::map>* nodes); XBT_PRIVATE xbt_edge_t new_xbt_graph_edge(const s_xbt_graph_t* graph, xbt_node_t s, xbt_node_t d, - std::map* edges); + std::map>* edges); #endif /* SIMGRID_ROUTING_GENERIC_HPP_ */