mirror of
https://github.com/vgough/encfs.git
synced 2025-01-19 04:20:11 +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);
|