SLL iterator speed up

This commit is contained in:
Jeff Hill
2000-11-08 04:24:59 +00:00
parent a3fe65a59a
commit cb6dfd31d0

View File

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