From 6766bd87442928099b64c5a0462b25af94fcc669 Mon Sep 17 00:00:00 2001 From: whaffman Date: Mon, 22 Sep 2025 13:13:36 +0200 Subject: [PATCH] Fix formatting in Log class: adjust pointer declaration style for RESET_COLOR --- webserv/log/Log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webserv/log/Log.hpp b/webserv/log/Log.hpp index ba80eca..c5767be 100644 --- a/webserv/log/Log.hpp +++ b/webserv/log/Log.hpp @@ -80,5 +80,5 @@ class Log {.level = Log::Level::Error, .name = "ERROR", .color = "\033[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"; };