mirror of
https://github.com/vgough/encfs.git
synced 2024-11-28 19:03:42 +01:00
9 lines
177 B
C++
9 lines
177 B
C++
#include "benchmark/benchmark.h"
|
|
|
|
void BM_empty(benchmark::State& state) {
|
|
for (auto _ : state) {
|
|
benchmark::DoNotOptimize(state.iterations());
|
|
}
|
|
}
|
|
BENCHMARK(BM_empty);
|