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