| 21 | |
| 22 | |
| 23 | inline void SubAllocator::InsertNode(void* p,int indx) |
| 24 | { |
| 25 | ((RAR_NODE*) p)->next=FreeList[indx].next; |
| 26 | FreeList[indx].next=(RAR_NODE*) p; |
| 27 | } |
| 28 | |
| 29 | |
| 30 | inline void* SubAllocator::RemoveNode(int indx) |
nothing calls this directly
no outgoing calls
no test coverage detected