From b2852b7c61948f495d7437ffaa7fd9aced12849c Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 16 Nov 2023 22:41:43 +0100 Subject: [PATCH] Fix some doxygen errors --- include/simgrid/s4u/NetZone.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/simgrid/s4u/NetZone.hpp b/include/simgrid/s4u/NetZone.hpp index c939abfe23..afe33bd54d 100644 --- a/include/simgrid/s4u/NetZone.hpp +++ b/include/simgrid/s4u/NetZone.hpp @@ -87,6 +87,7 @@ public: */ void add_route(const NetZone* src, const NetZone* dst, const std::vector& link_list, bool symmetrical = true); +#ifndef DOXYGEN /** * @brief Add a route between 2 netpoints * @@ -121,6 +122,7 @@ public: XBT_ATTRIB_DEPRECATED_v339("Please call add_route either from Host to Host or NetZone to NetZone") void add_route( kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst, const std::vector& links); +#endif /** * @brief Add a route between 2 hosts @@ -136,7 +138,7 @@ public: * * @param src Source host * @param dst Destination host - * @param link_list List of links. The UP direction will be used on src->dst and DOWN direction on dst->src + * @param links List of links. The UP direction will be used on src->dst and DOWN direction on dst->src */ void add_route(const Host* src, const Host* dst, const std::vector& links); -- 2.20.1