MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / deallocateFrame

Method deallocateFrame

Libraries/Await/Await.cpp:791–799  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

789}
790
791void AwaitTask::Promise::deallocateFrame(void* frame) noexcept
792{
793 if (frame == nullptr)
794 {
795 return;
796 }
797
798 AwaitAllocator::releaseFromAnyAllocator(frame);
799}
800
801void* AwaitTask::Promise::operator new(size_t size) noexcept { return allocateFrame(size, nullptr); }
802

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected