fixed missing const

This commit is contained in:
Jeff Hill
2001-02-20 18:58:44 +00:00
parent e53da894f5
commit a33ced77fc

View File

@@ -413,7 +413,7 @@ void resTable<T,ID>::traverseConst ( void (T::*pCB)() const ) const
while ( pList < &this->pTable[this->hashIdMask+1] ) {
tsSLIterConst<T> pItem = pList->firstIter ();
while ( pItem.valid () ) {
tsSLIter<T> pNext = pItem;
const tsSLIter<T> pNext = pItem;
pNext++;
( pItem.pointer ()->*pCB ) ();
pItem = pNext;