From 17b939f6d6ea4db299a8e980d3be5c44fb975eb2 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 20 Nov 2000 21:23:00 +0000 Subject: [PATCH] fixed missing const --- src/libCom/cxxTemplates/tsSLList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }