| 364 | } |
| 365 | |
| 366 | __forceinline void freeIterator ( char * ptr, const LineInfo * at ) { |
| 367 | if ( instrumentAllocations ) onFree(ptr - 16, at ? *at : LineInfo()); |
| 368 | heap->impl_freeIterator(ptr); |
| 369 | } |
| 370 | |
| 371 | __forceinline char * allocate ( uint64_t size, const LineInfo * at = nullptr ) { |
| 372 | auto aptr = heap->impl_allocate(size); |
nothing calls this directly
no test coverage detected