| 36 | BENCHMARK(BM_SwitchSet); |
| 37 | |
| 38 | static void BM_SwitchFlip(benchmark::State& state) { |
| 39 | volatile int x = 0; |
| 40 | BM_SwitchOp(state, [&x](auto& s, auto id, bool) { x = s.Flip(id); }); |
| 41 | } |
| 42 | |
| 43 | BENCHMARK(BM_SwitchFlip); |
| 44 |
nothing calls this directly
no test coverage detected