From 463e36e48d71356a64b06ed61b7aed59af043b66 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Fri, 4 Oct 2024 13:47:10 -0400 Subject: [PATCH] why --- CMakeLists.txt | 2 +- include/blt/std/logging.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef06fdb..a255f11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 2.0.7) +set(BLT_VERSION 2.0.8) set(BLT_TARGET BLT) diff --git a/include/blt/std/logging.h b/include/blt/std/logging.h index 344ae9f..5d60ecd 100644 --- a/include/blt/std/logging.h +++ b/include/blt/std/logging.h @@ -157,7 +157,7 @@ namespace blt::logging inline auto make_color(Args... colors) { std::string mode; - ((mode + std::string(colors) + ";"), ...); + ((mode += std::string(colors) + ";"), ...); return ESC("[" + mode.substr(0, mode.size() - 1) + "m"); } }