Add missing override

This commit is contained in:
Danila Malyutin 2015-10-13 23:42:43 +03:00
parent 92e90101e2
commit 74daf9145a
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ public:
value(convert::to<T>(new_value)); value(convert::to<T>(new_value));
} }
void value_from(const entry_base* rhs) void value_from(const entry_base* rhs) override
{ {
value(static_cast<const entry*>(rhs)->value()); value(static_cast<const entry*>(rhs)->value());
} }
@ -125,4 +125,4 @@ public:
void set_defaults(); void set_defaults();
std::string to_string() const; std::string to_string() const;
}; };