| 21 | void (*destroy_fn)(void* target) noexcept; |
| 22 | |
| 23 | vtable(const vtable&) noexcept = default; |
| 24 | |
| 25 | constexpr vtable() noexcept : move_destroy_fn(nullptr), execute_destroy_fn(nullptr), destroy_fn(nullptr) {} |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected