| 3109 | } |
| 3110 | |
| 3111 | inline Block* try_get_block_from_free_list() |
| 3112 | { |
| 3113 | return freeList.try_get(); |
| 3114 | } |
| 3115 | |
| 3116 | // Gets a free block from one of the memory pools, or allocates a new one (if applicable) |
| 3117 | template<AllocationMode canAlloc> |
no test coverage detected