From cd8e28ce07a13bbeff60a2338e7b3fc3088791d7 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Sun, 11 Oct 2020 22:10:39 +0200 Subject: [PATCH 1/1] Functions are currenlty not overridden. --- src/surf/network_interface.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surf/network_interface.hpp b/src/surf/network_interface.hpp index 89b1e5371f..9fffd5b88f 100644 --- a/src/surf/network_interface.hpp +++ b/src/surf/network_interface.hpp @@ -125,13 +125,13 @@ public: s4u::Link* get_iface() { return &piface_; } /** @brief Get the bandwidth in bytes per second of current Link */ - virtual double get_bandwidth() const; + double get_bandwidth() const; /** @brief Update the bandwidth in bytes per second of current Link */ virtual void set_bandwidth(double value) = 0; /** @brief Get the latency in seconds of current Link */ - virtual double get_latency() const; + double get_latency() const; /** @brief Update the latency in seconds of current Link */ virtual void set_latency(double value) = 0; -- 2.30.2