| 116 | |
| 117 | template <typename RetVal, typename Cls, typename... Args> |
| 118 | constexpr auto deprecateMember(RetVal (Cls::*func)(Args...) const, const char* useInstead) |
| 119 | -> DeprecatedMemberFunc</*isConst=*/true, RetVal, Cls, Args...> |
| 120 | { |
| 121 | return DeprecatedMemberFunc</*isConst=*/true, RetVal, Cls, Args...>{func, useInstead}; |
| 122 | } |
| 123 | |
| 124 | template <typename RetVal, typename Cls, typename... Args> |
| 125 | constexpr auto deprecateMember(RetVal (Cls::*func)(Args...), const char* useInstead) |
no outgoing calls
no test coverage detected