| 48 | } |
| 49 | |
| 50 | static callable_type* allocated_ptr(void* src) noexcept { |
| 51 | return *static_cast<callable_type**>(src); |
| 52 | } |
| 53 | |
| 54 | static callable_type*& allocated_ref_ptr(void* src) noexcept { |
| 55 | return *static_cast<callable_type**>(src); |
nothing calls this directly
no outgoing calls
no test coverage detected