Current section

Files

Jump to
rocksdb deps snappy third_party benchmark test link_main_test.cc
Raw

deps/snappy/third_party/benchmark/test/link_main_test.cc

#include "benchmark/benchmark.h"
void BM_empty(benchmark::State& state) {
for (auto _ : state) {
auto iterations = state.iterations();
benchmark::DoNotOptimize(iterations);
}
}
BENCHMARK(BM_empty);