From 74daf9145a8e285bfb683c566aaff67e171df794 Mon Sep 17 00:00:00 2001 From: Danila Malyutin Date: Tue, 13 Oct 2015 23:42:43 +0300 Subject: [PATCH] Add missing override --- Utilities/config_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities/config_context.h b/Utilities/config_context.h index fcbcfb17d7..169568038f 100644 --- a/Utilities/config_context.h +++ b/Utilities/config_context.h @@ -94,7 +94,7 @@ public: value(convert::to(new_value)); } - void value_from(const entry_base* rhs) + void value_from(const entry_base* rhs) override { value(static_cast(rhs)->value()); } @@ -125,4 +125,4 @@ public: void set_defaults(); std::string to_string() const; -}; \ No newline at end of file +};