| 145 | } |
| 146 | |
| 147 | static void execute_destroy(void* target) { |
| 148 | assert(target != nullptr); |
| 149 | |
| 150 | if (is_inlinable()) { |
| 151 | return execute_destroy_inline(target); |
| 152 | } |
| 153 | |
| 154 | return execute_destroy_allocated(target); |
| 155 | } |
| 156 | |
| 157 | static void destroy(void* target) noexcept { |
| 158 | assert(target != nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected