| 84 | } |
| 85 | |
| 86 | static void destroy_allocated(void* target) noexcept { |
| 87 | auto callable_ptr = allocated_ptr(target); |
| 88 | delete callable_ptr; |
| 89 | } |
| 90 | |
| 91 | static constexpr vtable make_vtable() noexcept { |
| 92 | void (*move_destroy_fn)(void* src, void* dst) noexcept = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected