| 44 | |
| 45 | private: |
| 46 | static callable_type* inline_ptr(void* src) noexcept { |
| 47 | return static_cast<callable_type*>(src); |
| 48 | } |
| 49 | |
| 50 | static callable_type* allocated_ptr(void* src) noexcept { |
| 51 | return *static_cast<callable_type**>(src); |
nothing calls this directly
no outgoing calls
no test coverage detected