]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/benchmark/test/link_main_test.cc
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / benchmark / test / link_main_test.cc
1 #include "benchmark/benchmark.h"
2
3 void BM_empty(benchmark::State& state) {
4 for (auto _ : state) {
5 benchmark::DoNotOptimize(state.iterations());
6 }
7 }
8 BENCHMARK(BM_empty);