Fix compile error in tsSLList.h

This commit is contained in:
Jeremy Lorelli
2024-12-22 12:20:39 -08:00
committed by mdavidsaver
parent 169948967f
commit 333be085c0

View File

@ -311,13 +311,13 @@ inline bool tsSLIterConst<T>::valid () const
template < class T >
inline bool tsSLIterConst<T>::operator == ( const tsSLIterConst<T> &rhs ) const
{
return this->pEntry == rhs.pConstEntry;
return this->pEntry == rhs.pEntry;
}
template < class T >
inline bool tsSLIterConst<T>::operator != (const tsSLIterConst<T> &rhs) const
{
return this->pEntry != rhs.pConstEntry;
return this->pEntry != rhs.pEntry;
}
template < class T >