Struct CompleteInvoker< void >
Synopsis
#include <include/internal/benchmark/detail/catch_complete_invoke.hpp>
template <>
struct CompleteInvoker<void>
Description
No description yet.
Methods
invoke |
Source
Lines 38-45 in include/internal/benchmark/detail/catch_complete_invoke.hpp.
template <>
struct CompleteInvoker<void> {
template <typename Fun, typename... Args>
static CompleteType_t<void> invoke(Fun&& fun, Args&&... args) {
std::forward<Fun>(fun)(std::forward<Args>(args)...);
return {};
}
};