| 6510 | // invoke and not return void :( |
| 6511 | template <typename Fun, typename... Args> |
| 6512 | CompleteType_t<ResultOf_t<Fun(Args...)>> complete_invoke(Fun&& fun, Args&&... args) { |
| 6513 | return CompleteInvoker<ResultOf_t<Fun(Args...)>>::invoke(std::forward<Fun>(fun), std::forward<Args>(args)...); |
| 6514 | } |
| 6515 | |
| 6516 | const std::string benchmarkErrorMsg = "a benchmark failed to run successfully"; |
| 6517 | } // namespace Detail |
no outgoing calls
no test coverage detected