From 0890663f7af68329b86da96e36634b0896f0e7fc Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 12 Mar 2025 17:30:49 -0400 Subject: [PATCH] add flush --- CMakeLists.txt | 2 +- libraries/parallel-hashmap | 2 +- src/blt/logging/status.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0a31c6..9e13993 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 5.2.16) +set(BLT_VERSION 5.2.17) set(BLT_TARGET BLT) diff --git a/libraries/parallel-hashmap b/libraries/parallel-hashmap index 7ef2e73..154c634 160000 --- a/libraries/parallel-hashmap +++ b/libraries/parallel-hashmap @@ -1 +1 @@ -Subproject commit 7ef2e733416953b222851f9a360d7fc72d068ee5 +Subproject commit 154c63489e84d5569d3b466342a2ae8fd99e4734 diff --git a/src/blt/logging/status.cpp b/src/blt/logging/status.cpp index 683964e..44df3d2 100644 --- a/src/blt/logging/status.cpp +++ b/src/blt/logging/status.cpp @@ -208,6 +208,6 @@ namespace blt::logging status_bar_t::~status_bar_t() { - std::cout << ansi::cursor::show_cursor; + std::cout << ansi::cursor::show_cursor << std::flush; } }