| 28 | |
| 29 | |
| 30 | inline void* SubAllocator::RemoveNode(int indx) |
| 31 | { |
| 32 | RAR_NODE* RetVal=FreeList[indx].next; |
| 33 | FreeList[indx].next=RetVal->next; |
| 34 | return RetVal; |
| 35 | } |
| 36 | |
| 37 | |
| 38 | inline uint SubAllocator::U2B(int NU) |
nothing calls this directly
no outgoing calls
no test coverage detected