From b6c7f3a266759cc9730c162437ea10f8e8ac9f8b Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 14 Apr 2021 08:56:37 +0200 Subject: [PATCH] Sonar requires a comment for empty functions. --- include/simgrid/kernel/routing/NetZoneImpl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/simgrid/kernel/routing/NetZoneImpl.hpp b/include/simgrid/kernel/routing/NetZoneImpl.hpp index bbd3899e88..7ad5dc4ae2 100644 --- a/include/simgrid/kernel/routing/NetZoneImpl.hpp +++ b/include/simgrid/kernel/routing/NetZoneImpl.hpp @@ -176,7 +176,7 @@ private: std::shared_ptr disk_model_; std::shared_ptr host_model_; /** @brief Perform sealing procedure for derived classes, if necessary */ - virtual void do_seal(){}; + virtual void do_seal() { /* obviously nothing to do by default */ } void add_child(NetZoneImpl* new_zone); }; } // namespace routing -- 2.20.1