Brett 2024-10-04 13:45:35 -04:00
parent ff5ba4a667
commit 15e1b263a4
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 2.0.6)
set(BLT_VERSION 2.0.7)
set(BLT_TARGET BLT)

View File

@ -154,7 +154,7 @@ namespace blt::logging
inline auto BRIGHT_WHITE_BACKGROUND = "107";
template<typename... Args>
inline auto MAKE_COLOR(Args... colors)
inline auto make_color(Args... colors)
{
std::string mode;
((mode + std::string(colors) + ";"), ...);