Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
dr3mro committed Nov 15, 2024
1 parent 0e5c2a0 commit f2ef376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/message/message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ class Message
static void CriticalMessage(const std::string& status_message);

private:
static void MessageImpl(const std::string& status_message, crow::LogLevel level);
static constexpr std::string RESET = "\033[0m"; // Reset
static void MessageImpl(const std::string& status_message, crow::LogLevel level);
static constexpr char RESET[] = "\033[0m"; // Reset
};

0 comments on commit f2ef376

Please sign in to comment.