X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8164c2d758134b0e83cded911ddd43ce07dc8ead..d6ee04bb4b77788c1f17220a2117f41573c9dcde:/src/kernel/routing/NetZoneImpl.hpp diff --git a/src/kernel/routing/NetZoneImpl.hpp b/src/kernel/routing/NetZoneImpl.hpp index 95f5ae38c7..c2d77382aa 100644 --- a/src/kernel/routing/NetZoneImpl.hpp +++ b/src/kernel/routing/NetZoneImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2017. 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. */ @@ -76,7 +76,7 @@ protected: /** @brief retrieves the list of all routes of size 1 (of type src x dst x Link) */ /* returns whether we found a bypass path */ bool getBypassRoute(routing::NetPoint * src, routing::NetPoint * dst, - /* OUT */ std::vector * links, double* latency); + /* OUT */ std::vector& links, double* latency); public: /* @brief get the route between two nodes in the full platform @@ -87,7 +87,7 @@ public: * @param latency Accumulator in which the latencies should be added (caller must set it to 0) */ static void getGlobalRoute(routing::NetPoint * src, routing::NetPoint * dst, - /* OUT */ std::vector * links, double* latency); + /* OUT */ std::vector& links, double* latency); virtual void getGraph(xbt_graph_t graph, std::map * nodes, std::map * edges) = 0;