blob: ca84944a243d4bcaee3c2c2f76bf1869f8e5dd46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <benchmark/benchmark.h>
#if 0
namespace {
void noop(benchmark::State& state)
{
for (auto _ : state)
(void)0;
}
BENCHMARK(noop);
} // namespace
#endif
|