fixed lack of const

This commit is contained in:
Jeff Hill
2001-02-15 23:15:46 +00:00
parent 212b3212cc
commit 63fb42a888
+1 -1
View File
@@ -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;
}