| 39 | } |
| 40 | |
| 41 | static void TestDealloc(void* Ptr) { |
| 42 | if (Ptr) { |
| 43 | ++DeallocCount; |
| 44 | } |
| 45 | ::FEXCore::Allocator::aligned_free(Ptr); |
| 46 | } |
| 47 | |
| 48 | template<typename F> |
| 49 | using function = fextl::move_only_function<F, TestAlloc, TestDealloc>; |
nothing calls this directly
no test coverage detected