From bcf08705f5bb3f928498975c0c04c2fae545c3b2 Mon Sep 17 00:00:00 2001 From: pleroy Date: Wed, 4 Jun 2014 23:16:45 +0200 Subject: [PATCH] Comment. --- src/benchmark.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/benchmark.cc b/src/benchmark.cc index 61fed2b2..1018f093 100644 --- a/src/benchmark.cc +++ b/src/benchmark.cc @@ -284,8 +284,8 @@ void ComputeStats(const std::vector& reports, stddev_data->report_label = mean_data->report_label; stddev_data->iterations = iterations_stat.StdDev(); // The value of iterations_stat.StdDev() above may be 0 if all the repetitions - // have the same number of iterations. Blindly multiplying by 0 - // in the computation of real/cpu_accumulated_time below would lead to 0/0 in + // have the same number of iterations. Blindly multiplying by 0 in the + // computation of real/cpu_accumulated_time below would lead to 0/0 in // PrintRunData. So we skip the multiplication in this case and PrintRunData // skips the division. if (stddev_data->iterations == 0) {