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

@@ -70,7 +70,7 @@ public:
m_first = NULL;
}
virtual ~MxList();
virtual ~MxList() override;
void Append(T p_obj) { _InsertEntry(p_obj, this->m_last, NULL); };
void DeleteAll();