| 64 | BENCHMARK(BM_VariableDiv); |
| 65 | |
| 66 | static void BM_VariableMod(benchmark::State& state) { |
| 67 | volatile int x = 0; |
| 68 | BM_VariableOp(state, [&x](auto& v, auto id, auto val) { x = v.Mod(id, val); }); |
| 69 | } |
| 70 | |
| 71 | BENCHMARK(BM_VariableMod); |
| 72 |
nothing calls this directly
no test coverage detected