Return a dummy pointer for zero-length allocations.
| 169 | |
| 170 | /// Return a dummy pointer for zero-length allocations. |
| 171 | static uint8_t* EmptyAllocPtr() { |
| 172 | return reinterpret_cast<uint8_t*>(&zero_length_region_); |
| 173 | } |
| 174 | |
| 175 | /// Makes all allocated chunks available for re-use, but doesn't delete any chunks. |
| 176 | void Clear(); |
no outgoing calls
no test coverage detected