Add missing override keywords

This commit is contained in:
Christian Semmler
2023-11-09 10:52:58 -05:00
parent 1f6d1ddab0
commit 82697d7148
5 changed files with 7 additions and 8 deletions

View File

@@ -63,13 +63,12 @@ public:
m_resizeOption = HASH_TABLE_OPT_NO_EXPAND;
}
virtual ~MxHashTable();
virtual ~MxHashTable() override;
void Resize();
void Add(T*);
virtual MxS8 Compare(T*, T*) = 0;
virtual MxS8 Compare(T*, T*) override = 0;
virtual MxU32 Hash(T*) = 0;
// FIXME: use of friend here?