Modern compiler fix

This commit is contained in:
Christian Semmler 2024-12-23 10:23:57 -07:00
parent 6bd395a0f8
commit 597a1da8b0

View File

@ -20,7 +20,7 @@ class MxUtilityList : public list<T> {
} }
// Note: does not take a reference // Note: does not take a reference
void PushBack(T p_obj) { push_back(p_obj); } void PushBack(T p_obj) { this->push_back(p_obj); }
}; };
#endif // MXUTILITYLIST_H #endif // MXUTILITYLIST_H