Skip to content

Commit 4c38b2d

Browse files
committed
Clang-format doesn't like the 1'000'000 separators.
1 parent 8cefac8 commit 4c38b2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvbench/detail/entropy_criterion.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void entropy_criterion::do_add_measurement(nvbench::float64_t measurement)
7575
if (bin_keys)
7676
{
7777
const auto resolution_us = 0.5;
78-
const auto resulution_s = resolution_us / 1 '000' 000;
78+
const auto resulution_s = resolution_us / 1000000;
7979
const auto epsilon = resulution_s * 2;
8080
key = std::round(key / epsilon) * epsilon;
8181
}

0 commit comments

Comments
 (0)