diff --git a/src/libCom/cxxTemplates/tsSLList.h b/src/libCom/cxxTemplates/tsSLList.h index 32e30e4f6..cf21549b4 100644 --- a/src/libCom/cxxTemplates/tsSLList.h +++ b/src/libCom/cxxTemplates/tsSLList.h @@ -320,7 +320,7 @@ template < class T > inline tsSLIterConst tsSLIterConst::operator ++ (int) // postfix ++ { tsSLIterConst tmp = *this; - tsSLNode < T > *pCurNode = this->pConstEntry; + const tsSLNode < T > *pCurNode = this->pConstEntry; this->pConstEntry = pCurNode->pNext; return tmp; }