Skip to content

Commit

Permalink
Fix compile error in tsSLList.h
Browse files Browse the repository at this point in the history
  • Loading branch information
JJL772 authored and mdavidsaver committed Dec 27, 2024
1 parent b467b27 commit 5b77100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/libcom/src/cxxTemplates/tsSLList.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 >
Expand Down

0 comments on commit 5b77100

Please sign in to comment.