diff options
author | Jack Lloyd <[email protected]> | 2017-10-19 16:18:33 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-19 16:18:33 -0400 |
commit | 7de7aad3be6f97b65e9ec7b69f0c093ad3a52394 (patch) | |
tree | e810081b2c48b43f321f60b544e8612ef3b3e446 /src/cli/speed.cpp | |
parent | 53a7136759a38f5cd7b1dfcd79868ffe89d61c35 (diff) |
In speed flush the output stream after each result
Diffstat (limited to 'src/cli/speed.cpp')
-rw-r--r-- | src/cli/speed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp index ffb8c6a0f..518adb857 100644 --- a/src/cli/speed.cpp +++ b/src/cli/speed.cpp @@ -944,7 +944,7 @@ class Speed final : public Command } else { - output() << t.to_string(); + output() << t.to_string() << std::flush; if(m_summary) m_summary->add(t); } |