From 4e0efa4e57a6db58ca4ffbe3beaf8f56dbab9eef Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 6 May 2021 13:24:00 +0200 Subject: [PATCH] There is no need to have these functions 'virtual'. --- src/plugins/vm/VirtualMachineImpl.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index e3056d23f8..031c355cfb 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -42,12 +42,12 @@ public: size_t ramsize); ~VirtualMachineImpl() override; - virtual void suspend(kernel::actor::ActorImpl* issuer); - virtual void resume(); - virtual void shutdown(kernel::actor::ActorImpl* issuer); + void suspend(kernel::actor::ActorImpl* issuer); + void resume(); + void shutdown(kernel::actor::ActorImpl* issuer); /** @brief Change the physical host on which the given VM is running */ - virtual void set_physical_host(s4u::Host* dest); + void set_physical_host(s4u::Host* dest); /** @brief Get the physical host on which the given VM is running */ s4u::Host* get_physical_host() const { return physical_host_; } @@ -63,7 +63,7 @@ public: const s4u::VirtualMachine* get_iface() const override { return piface_; } s4u::VirtualMachine* get_iface() override { return piface_; } - virtual void set_bound(double bound); + void set_bound(double bound); void update_action_weight(); -- 2.20.1