diff --git a/public/tier1/utllinkedlist.h b/public/tier1/utllinkedlist.h index 8ff713c6..7943155f 100644 --- a/public/tier1/utllinkedlist.h +++ b/public/tier1/utllinkedlist.h @@ -161,7 +161,7 @@ protected: ListElem_t const& InternalElement( I i ) const { return m_Memory[i]; } // copy constructors not allowed - CUtlLinkedList( CUtlLinkedList const& list ) : m_LastAlloc( 0 ) { Assert(0); } + CUtlLinkedList( CUtlLinkedList const& list ) : m_LastAlloc( m_Memory.InvalidIterator() ) { Assert(0); } M m_Memory; I m_Head;