don't mark a function virtual that is overriden.

This commit is contained in:
Bernd Amend 2021-05-22 14:44:08 +02:00
parent 1302e28e32
commit b3ee667ca5

View File

@ -91,7 +91,7 @@ int to_int(TestEnum t)
class TestDerivedType : public TestBaseType
{
public:
virtual int func() override { return 1; }
int func() override { return 1; }
int derived_only_func() { return 19; }
};