| 155 | } |
| 156 | |
| 157 | static void destroy(void* target) noexcept { |
| 158 | assert(target != nullptr); |
| 159 | |
| 160 | if (is_inlinable()) { |
| 161 | return destroy_inline(target); |
| 162 | } |
| 163 | |
| 164 | return destroy_allocated(target); |
| 165 | } |
| 166 | |
| 167 | static constexpr callable_type* as(void* src) noexcept { |
| 168 | if (is_inlinable()) { |
no outgoing calls
no test coverage detected