| 3065 | } |
| 3066 | |
| 3067 | inline Block* try_get_block_from_free_list() |
| 3068 | { |
| 3069 | return freeList.try_get(); |
| 3070 | } |
| 3071 | |
| 3072 | // Gets a free block from one of the memory pools, or allocates a new one (if applicable) |
| 3073 | template<AllocationMode canAlloc> |
no test coverage detected