From: Arnaud Giersch Date: Sun, 11 Oct 2020 20:10:39 +0000 (+0200) Subject: Functions are currenlty not overridden. X-Git-Tag: v3.26~333 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cd8e28ce07a13bbeff60a2338e7b3fc3088791d7?ds=sidebyside Functions are currenlty not overridden. --- 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;