| 60 | |
| 61 | template <size_t Size> |
| 62 | static void bench_callback(benchmark::State& benchState) { |
| 63 | onMainThread([&benchState]() { return benchCallbackActor<Size>(&benchState); }).blockUntilReady(); |
| 64 | } |
| 65 | |
| 66 | BENCHMARK_TEMPLATE(bench_callback, 1)->Range(1, 1 << 8)->ReportAggregatesOnly(true); |
| 67 | BENCHMARK_TEMPLATE(bench_callback, 32)->Range(1, 1 << 8)->ReportAggregatesOnly(true); |
nothing calls this directly
no test coverage detected