X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b045e3382b1893d6b1e952d451eab103870c704e..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/include/simgrid/kernel/routing/RoutedZone.hpp diff --git a/include/simgrid/kernel/routing/RoutedZone.hpp b/include/simgrid/kernel/routing/RoutedZone.hpp index 6a2e142ebc..f3c6698c36 100644 --- a/include/simgrid/kernel/routing/RoutedZone.hpp +++ b/include/simgrid/kernel/routing/RoutedZone.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -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_ */