Fix formatting in Log class: adjust pointer declaration style for RESET_COLOR

This commit is contained in:
whaffman 2025-09-22 13:13:36 +02:00
parent 6b85be65b8
commit 6766bd8744

View File

@ -80,5 +80,5 @@ class Log
{.level = Log::Level::Error, .name = "ERROR", .color = "\033[31m"}, {.level = Log::Level::Error, .name = "ERROR", .color = "\033[31m"},
{.level = Log::Level::Fatal, .name = "FATAL", .color = "\033[1;31m"}}}; {.level = Log::Level::Fatal, .name = "FATAL", .color = "\033[1;31m"}}};
constexpr static const char* RESET_COLOR = "\033[0m"; constexpr static const char *RESET_COLOR = "\033[0m";
}; };