[benchmark-set] Another Pause/Resume

This commit is contained in:
Behdad Esfahbod 2022-05-26 12:00:45 -06:00
parent ea2dd54b68
commit 9eab6d326f
1 changed files with 2 additions and 0 deletions

View File

@ -61,7 +61,9 @@ static void BM_SetOrderedInsert_1000(benchmark::State& state) {
assert(hb_set_get_population(original) == set_size);
for (auto _ : state) {
state.PauseTiming ();
hb_set_t* data = hb_set_copy(original);
state.ResumeTiming ();
for (int i = 0; i < 1000; i++) {
hb_set_add(data, i);
}