| 29 | BENCHMARK(BM_VariableGet); |
| 30 | |
| 31 | static void BM_VariableSet(benchmark::State& state) { |
| 32 | volatile int x = 0; |
| 33 | BM_VariableOp(state, [&x](auto& v, auto id, auto val) { x = v.Set(id, val); }); |
| 34 | } |
| 35 | |
| 36 | BENCHMARK(BM_VariableSet); |
| 37 |
nothing calls this directly
no test coverage detected