Skip to content

Commit

Permalink
using milliseoconds everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Dec 10, 2024
1 parent 7bd7318 commit 3a31e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2024/src/day_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ BENCHMARK_DEFINE_F(BenchmarkFixture, Part2Benchmark)
}
}

BENCHMARK_REGISTER_F(BenchmarkFixture, Part1Benchmark)->Unit(benchmark::kSecond);
BENCHMARK_REGISTER_F(BenchmarkFixture, Part2Benchmark)->Unit(benchmark::kSecond);
BENCHMARK_REGISTER_F(BenchmarkFixture, Part1Benchmark)->Unit(benchmark::kMillisecond);
BENCHMARK_REGISTER_F(BenchmarkFixture, Part2Benchmark)->Unit(benchmark::kMillisecond);

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

0 comments on commit 3a31e54

Please sign in to comment.