diff --git a/LEGO1/mxlist.h b/LEGO1/mxlist.h index 788d8c2f..8ef91333 100644 --- a/LEGO1/mxlist.h +++ b/LEGO1/mxlist.h @@ -152,21 +152,6 @@ inline void MxList::DeleteAll() m_first = NULL; } -template -inline void MxList::Append(T p_newobj) -{ - MxListEntry* currentLast = this->m_last; - MxListEntry* newEntry = new MxListEntry(p_newobj, currentLast); - - if (currentLast) - currentLast->SetNext(newEntry); - else - this->m_first = newEntry; - - this->m_last = newEntry; - this->m_count++; -} - template inline MxListEntry* MxList::_InsertEntry(T p_newobj, MxListEntry* p_prev, MxListEntry* p_next) {