| 84 | using Func = RetVal (*)(Args...); |
| 85 | |
| 86 | RetVal operator()(Args... args) const |
| 87 | { |
| 88 | issueDeprecationWarning(useInstead); |
| 89 | return (*func)(std::forward<Args>(args)...); |
| 90 | } |
| 91 | |
| 92 | const Func func; |
| 93 | const char* useInstead; |
nothing calls this directly
no test coverage detected