Fennel: RawIntrusiveListIter Class Reference (original) (raw)

Advances iterator position to next node.

Definition at line 139 of file RawIntrusiveList.h.

References IntrusiveListNode::pNext.

00140 { 00141 if (pCurr) { 00142 pCurr = pCurr->pNext; 00143 } 00144 }