From 4c38b2d5f7de9223c8efd602d72dcbeac55d5f92 Mon Sep 17 00:00:00 2001 From: Allison Piper Date: Mon, 14 Apr 2025 17:44:31 +0000 Subject: [PATCH] Clang-format doesn't like the 1'000'000 separators. --- nvbench/detail/entropy_criterion.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvbench/detail/entropy_criterion.cxx b/nvbench/detail/entropy_criterion.cxx index e009a3e..4cc0668 100644 --- a/nvbench/detail/entropy_criterion.cxx +++ b/nvbench/detail/entropy_criterion.cxx @@ -75,7 +75,7 @@ void entropy_criterion::do_add_measurement(nvbench::float64_t measurement) if (bin_keys) { const auto resolution_us = 0.5; - const auto resulution_s = resolution_us / 1 '000' 000; + const auto resulution_s = resolution_us / 1000000; const auto epsilon = resulution_s * 2; key = std::round(key / epsilon) * epsilon; }