| 789 | } |
| 790 | |
| 791 | void AwaitTask::Promise::deallocateFrame(void* frame) noexcept |
| 792 | { |
| 793 | if (frame == nullptr) |
| 794 | { |
| 795 | return; |
| 796 | } |
| 797 | |
| 798 | AwaitAllocator::releaseFromAnyAllocator(frame); |
| 799 | } |
| 800 | |
| 801 | void* AwaitTask::Promise::operator new(size_t size) noexcept { return allocateFrame(size, nullptr); } |
| 802 |
nothing calls this directly
no outgoing calls
no test coverage detected