Match MxDiskStreamController::FUN_100c7db0 (#1265)

* Match `MxDiskStreamController::FUN_100c7db0`

* Modern compiler fix
This commit is contained in:
Christian Semmler
2024-12-23 11:06:45 -07:00
committed by GitHub
parent 1b99d75543
commit 5ffa91d5fd
3 changed files with 12 additions and 2 deletions

View File

@@ -92,6 +92,9 @@ private:
// List<MxDSBuffer *>::~List<MxDSBuffer *>
// TEMPLATE: LEGO1 0x100c7ef0
// list<MxNextActionDataStart *>::insert
// list<MxNextActionDataStart *,allocator<MxNextActionDataStart *> >::insert
// TEMPLATE: BETA10 0x10150e60
// MxUtilityList<MxNextActionDataStart *>::PushBack
#endif // MXDISKSTREAMCONTROLLER_H

View File

@@ -18,6 +18,9 @@ public:
this->pop_front();
return TRUE;
}
// Note: does not take a reference
void PushBack(T p_obj) { this->push_back(p_obj); }
};
#endif // MXUTILITYLIST_H