fixed lack of const
This commit is contained in:
@@ -320,7 +320,7 @@ template < class T >
|
||||
inline tsSLIterConst<T> tsSLIterConst<T>::operator ++ (int) // postfix ++
|
||||
{
|
||||
tsSLIterConst<T> tmp = *this;
|
||||
tsSLNode < T > *pCurNode = this->pConstEntry;
|
||||
const tsSLNode < T > *pCurNode = this->pConstEntry;
|
||||
this->pConstEntry = pCurNode->pNext;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user