From b07fee6b6413354d22fce9e9e488e1c360cd8d7b Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Thu, 26 Mar 2015 18:32:31 -0400 Subject: [PATCH] address review comments --- cmake/steady_clock.cpp | 2 +- src/reporter.cc | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmake/steady_clock.cpp b/cmake/steady_clock.cpp index 4aa72a6e..66d50d17 100644 --- a/cmake/steady_clock.cpp +++ b/cmake/steady_clock.cpp @@ -4,4 +4,4 @@ int main() { typedef std::chrono::steady_clock Clock; Clock::time_point tp = Clock::now(); ((void)tp); -} \ No newline at end of file +} diff --git a/src/reporter.cc b/src/reporter.cc index 1d168e08..d701ca8c 100644 --- a/src/reporter.cc +++ b/src/reporter.cc @@ -103,7 +103,8 @@ bool ConsoleReporter::ReportContext(const Context& context) { if (context.cpu_scaling_enabled) { fprintf(stdout, "***WARNING*** CPU scaling is enabled, the benchmark " - "timings may be noisy and will incure extra overhead.\n"); + "real time measurements may be noisy and will incure extra " + "overhead.\n"); } #ifndef NDEBUG