diff --git a/src/libCom/cxxTemplates/tsSLList.h b/src/libCom/cxxTemplates/tsSLList.h index acf54a3fd..caaf92543 100644 --- a/src/libCom/cxxTemplates/tsSLList.h +++ b/src/libCom/cxxTemplates/tsSLList.h @@ -297,7 +297,7 @@ inline tsSLIterConst & tsSLIterConst::operator = ( const T *pNewEntry ) template < class T > inline tsSLIterConst tsSLIterConst::itemAfter () { - tsSLNode < T > *pCurNode = this->pConstEntry; + const tsSLNode < T > *pCurNode = this->pConstEntry; return pCurNode->pNext; }