From 090faecb454fbd6e6e17a75ef8146acb037118d4 Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Mon, 13 May 2019 22:41:42 +0300 Subject: [PATCH] Use IterationCount in one more place Found in -UNDEBUG build --- src/statistics.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/statistics.cc b/src/statistics.cc index 4dc2c95f31..bd5a3d6597 100644 --- a/src/statistics.cc +++ b/src/statistics.cc @@ -97,7 +97,7 @@ std::vector ComputeStats( // All repetitions should be run with the same number of iterations so we // can take this information from the first benchmark. - int64_t const run_iterations = reports.front().iterations; + const IterationCount run_iterations = reports.front().iterations; // create stats for user counters struct CounterStat { Counter c;