aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-07 00:05:08 +0000
committerlloyd <[email protected]>2008-09-07 00:05:08 +0000
commitf59a51317a39a1690a4a841f5eb063696e3c8a14 (patch)
treef3342239c6d2c8eaa1660109d4aa416ab0e9560f /checks
parent5222834ee1feadffc5ba01a0bb972b08d542ed02 (diff)
Flush stdout after every new result
Diffstat (limited to 'checks')
-rw-r--r--checks/bench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/bench.h b/checks/bench.h
index f58ce3250..07d67e0d1 100644
--- a/checks/bench.h
+++ b/checks/bench.h
@@ -15,7 +15,7 @@ class Benchmark_Report
public:
void report(const std::string& name, Timer timer)
{
- std::cout << name << " " << timer << "\n";
+ std::cout << name << " " << timer << std::endl;
data[name].insert(timer);
}