| 79 | } |
| 80 | |
| 81 | static void destroy_inline(void* target) noexcept { |
| 82 | auto callable_ptr = inline_ptr(target); |
| 83 | callable_ptr->~callable_type(); |
| 84 | } |
| 85 | |
| 86 | static void destroy_allocated(void* target) noexcept { |
| 87 | auto callable_ptr = allocated_ptr(target); |
nothing calls this directly
no outgoing calls
no test coverage detected