From 63fb42a88877a2262bb9c80eb0b72cfa27077038 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 15 Feb 2001 23:15:46 +0000 Subject: [PATCH] fixed lack of 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 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; }