diff --git a/modules/libcom/src/cxxTemplates/tsSLList.h b/modules/libcom/src/cxxTemplates/tsSLList.h index 6d375af556..895ec7ddec 100644 --- a/modules/libcom/src/cxxTemplates/tsSLList.h +++ b/modules/libcom/src/cxxTemplates/tsSLList.h @@ -311,13 +311,13 @@ inline bool tsSLIterConst::valid () const template < class T > inline bool tsSLIterConst::operator == ( const tsSLIterConst &rhs ) const { - return this->pEntry == rhs.pConstEntry; + return this->pEntry == rhs.pEntry; } template < class T > inline bool tsSLIterConst::operator != (const tsSLIterConst &rhs) const { - return this->pEntry != rhs.pConstEntry; + return this->pEntry != rhs.pEntry; } template < class T >