| 71 | BENCHMARK(BM_VariableMod); |
| 72 | |
| 73 | static void BM_VariableSetRange(benchmark::State& state) { |
| 74 | BM_VariableOp(state, [](auto& v, auto, auto val) { v.SetRange(1, max_vars, val); }); |
| 75 | } |
| 76 | |
| 77 | BENCHMARK(BM_VariableSetRange); |
| 78 |
nothing calls this directly
no test coverage detected