From: Martin Quinson Date: Thu, 1 Sep 2016 16:28:41 +0000 (+0200) Subject: add a missing 'override' to please paranoid compilers X-Git-Tag: v3_14~454^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6febe21ad8ce47f9132fada932c7a87f2211a51e add a missing 'override' to please paranoid compilers --- diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index d3aee1a19d..efc20f5ecc 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -118,7 +118,7 @@ public: void adjustWeightOfDummyCpuActions() {}; double next_occuring_event(double now) override; - void updateActionsState(double /*now*/, double /*delta*/) {}; + void updateActionsState(double /*now*/, double /*delta*/) override {}; };