From 4b1a8598f627b081b61f7243d7835f2e66728c35 Mon Sep 17 00:00:00 2001 From: OmniaX-dev Date: Sat, 13 Jan 2024 00:41:39 +0100 Subject: [PATCH] Fixed a bug in ostd::ConsoleOutputHandler::flush() method --- build.nr | 2 +- src/ostd/OutputHandlers.cpp | 2 +- temp_install.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 temp_install.sh diff --git a/build.nr b/build.nr index 20aaf66..e2241f0 100644 --- a/build.nr +++ b/build.nr @@ -1 +1 @@ -1819 +1821 diff --git a/src/ostd/OutputHandlers.cpp b/src/ostd/OutputHandlers.cpp index 0bd6f41..29ac572 100755 --- a/src/ostd/OutputHandlers.cpp +++ b/src/ostd/OutputHandlers.cpp @@ -201,7 +201,7 @@ namespace ostd OutputHandlerBase& ConsoleOutputHandler::flush(void) { - std::cout << std::endl; + std::cout << std::flush; return *this; } diff --git a/temp_install.sh b/temp_install.sh old mode 100644 new mode 100755