fixed SLL iterator performance

This commit is contained in:
Jeff Hill
2000-11-08 04:20:30 +00:00
parent 87a07b3f22
commit a3fe65a59a

View File

@@ -480,7 +480,8 @@ void resTable<T,ID>::traverse (pSetMFArg(pCB)) const
tsSLIter<T> pItem ( pList->first () );
while ( pItem.valid () ) {
(pItem->*pCB) ();
T * p = & ( *pItem );
(p->*pCB) ();
pItem = pItem->itemAfter ();
}
pList++;