[generator] Fix of fix warn.

This commit is contained in:
Maksim Andrianov 2019-08-28 13:24:17 +03:00 committed by gmoryes
parent f031f93d93
commit e66eda16bb
2 changed files with 2 additions and 2 deletions

View file

@ -67,6 +67,6 @@ protected:
private:
// Fix warning 'hides overloaded virtual function'.
void MergeInto(TranslatorCountry & other) const override { TranslatorInterface::MergeInto(other); }
using TranslatorCountry::MergeInto;
};
} // namespace generator

View file

@ -65,6 +65,6 @@ protected:
private:
// Fix warning 'hides overloaded virtual function'.
void MergeInto(TranslatorWorld & other) const override { TranslatorInterface::MergeInto(other); }
using TranslatorWorld::MergeInto;
};
} // namespace generator