Skip to content

Commit

Permalink
Merge pull request #33 from VeryAmazed/redundant-semicolons
Browse files Browse the repository at this point in the history
remove redundant semicolons
  • Loading branch information
ishmeals authored Mar 27, 2024
2 parents 651a991 + 25a6af3 commit d3fd760
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/data_structure/bench_ds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,13 @@ template <int k, class T, int out> static void BM(benchmark::State &state) {
BENCHMARK_TEMPLATE(BM, 512, name, out); \
BENCHMARK_TEMPLATE(BM, 1024, name, out);

test(digest::ds::Naive, 0);
test(digest::ds::Naive2, 1);
test(digest::ds::MonoQueue, 2);
test(digest::ds::SegmentTree, 3);
test(digest::ds::Set, 4);
test2(digest::ds::Adaptive, 5);
test2(digest::ds::Adaptive64, 6);
test(digest::ds::Naive, 0)
test(digest::ds::Naive2, 1)
test(digest::ds::MonoQueue, 2)
test(digest::ds::SegmentTree, 3)
test(digest::ds::Set, 4)
test2(digest::ds::Adaptive, 5)
test2(digest::ds::Adaptive64, 6)

int main(int argc, char **argv) {
setupInput();
Expand Down

0 comments on commit d3fd760

Please sign in to comment.