commit 6456838fd75c730df8ccb916fc0115030c03070f parent d3a808a507083b08272a3b9bbcf659e2e8e552ba Author: deurzen <max@deurzen.net> Date: Tue, 1 Nov 2022 12:22:33 +0100 removes redundant output flushes Diffstat:
M | src/kranewl/conf/options.cc | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/kranewl/conf/options.cc b/src/kranewl/conf/options.cc @@ -126,14 +126,14 @@ parse_options(int argc, char** argv) noexcept break; case 'v': - std::cout << VERSION << std::endl << std::flush; + std::cout << VERSION << std::endl; std::exit(EXIT_SUCCESS); break; case '?': case 'h': default: - std::cout << USAGE << std::endl << std::flush; + std::cout << USAGE << std::endl; std::exit(EXIT_SUCCESS); break; }