MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / execute_destroy

Method execute_destroy

include/concurrencpp/task.h:147–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145 }
146
147 static void execute_destroy(void* target) {
148 assert(target != nullptr);
149
150 if (is_inlinable()) {
151 return execute_destroy_inline(target);
152 }
153
154 return execute_destroy_allocated(target);
155 }
156
157 static void destroy(void* target) noexcept {
158 assert(target != nullptr);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected