| 1086 | } |
| 1087 | |
| 1088 | ~BatchAllocator() { |
| 1089 | for (BatchInfo *batch = batches_; batch;) { |
| 1090 | BatchInfo *nextBatch = batch->next_; |
| 1091 | free(batch); |
| 1092 | batch = nextBatch; |
| 1093 | } |
| 1094 | } |
| 1095 | |
| 1096 | /// allocate space for an array of objectPerAllocation object. |
| 1097 | /// @warning it is the responsability of the caller to call objects |
nothing calls this directly
no outgoing calls
no test coverage detected