| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected