Fix compiler warning

This commit is contained in:
Daniel Marjamäki 2020-01-10 15:08:53 +01:00
parent 797ed88147
commit 75fd4809e6
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ namespace ExprEngine {
class UninitValue: public Value {
public:
UninitValue() : Value("?", ValueType::UninitValue) {}
virtual bool isEqual(DataBase *dataBase, int value) const {
bool isEqual(DataBase *dataBase, int value) const OVERRIDE {
(void)dataBase;
(void)value;
return true;