Skip to content

Commit

Permalink
Fix compilation of util_time.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock authored and gades committed Jun 30, 2021
1 parent d0d213d commit c340fcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/bench/util_time.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <bench/bench.h>

#include <util/time.h>
#include <utiltime.h>

static void BenchTimeDeprecated(benchmark::State& state)
{
Expand Down Expand Up @@ -36,7 +36,7 @@ static void BenchTimeMillisSys(benchmark::State& state)
}
}

BENCHMARK(BenchTimeDeprecated, 100000000);
BENCHMARK(BenchTimeMillis, 6000000);
BENCHMARK(BenchTimeMillisSys, 6000000);
BENCHMARK(BenchTimeMock, 300000000);
BENCHMARK(BenchTimeDeprecated/*, 100000000*/);
BENCHMARK(BenchTimeMillis/*, 6000000*/);
BENCHMARK(BenchTimeMillisSys/*, 6000000*/);
BENCHMARK(BenchTimeMock/*, 300000000*/);

0 comments on commit c340fcc

Please sign in to comment.