| 6575 | // invoke and not return void :( |
| 6576 | template <typename Fun, typename... Args> |
| 6577 | CompleteType_t<FunctionReturnType<Fun, Args...>> complete_invoke(Fun&& fun, Args&&... args) { |
| 6578 | return CompleteInvoker<FunctionReturnType<Fun, Args...>>::invoke(std::forward<Fun>(fun), std::forward<Args>(args)...); |
| 6579 | } |
| 6580 | |
| 6581 | const std::string benchmarkErrorMsg = "a benchmark failed to run successfully"; |
| 6582 | } // namespace Detail |
no outgoing calls
no test coverage detected