| 165 | } |
| 166 | |
| 167 | static constexpr callable_type* as(void* src) noexcept { |
| 168 | if (is_inlinable()) { |
| 169 | return inline_ptr(src); |
| 170 | } |
| 171 | |
| 172 | return allocated_ptr(src); |
| 173 | } |
| 174 | |
| 175 | static constexpr inline vtable s_vtable = make_vtable(); |
| 176 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected