| 2026 | detail::enable_if_t<!std::is_member_function_pointer<detail::remove_reference_t<F>>::value, |
| 2027 | int> = 0> |
| 2028 | constexpr auto method_adaptor(F &&f) -> decltype(std::forward<F>(f)) { |
| 2029 | return std::forward<F>(f); |
| 2030 | } |
| 2031 | |
| 2032 | template <typename Derived, |
| 2033 | typename T, |
nothing calls this directly
no outgoing calls
no test coverage detected