| 62 | } |
| 63 | |
| 64 | static void move_destroy_allocated(void* src, void* dst) noexcept { |
| 65 | auto callable_ptr = std::exchange(allocated_ref_ptr(src), nullptr); |
| 66 | new (dst) callable_type*(callable_ptr); |
| 67 | } |
| 68 | |
| 69 | static void execute_destroy_inline(void* target) { |
| 70 | auto callable_ptr = inline_ptr(target); |
nothing calls this directly
no outgoing calls
no test coverage detected