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

Method execute_destroy_inline

include/concurrencpp/task.h:69–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 }
68
69 static void execute_destroy_inline(void* target) {
70 auto callable_ptr = inline_ptr(target);
71 (*callable_ptr)();
72 callable_ptr->~callable_type();
73 }
74
75 static void execute_destroy_allocated(void* target) {
76 auto callable_ptr = allocated_ptr(target);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected