From a59f74e8a2a33a45bce11507c75fc9730e0ddd56 Mon Sep 17 00:00:00 2001 From: Josh Junon Date: Thu, 18 Jan 2018 15:03:03 +0100 Subject: [PATCH] remove needless zeros in reset code --- include/spdlog/sinks/ansicolor_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/ansicolor_sink.h b/include/spdlog/sinks/ansicolor_sink.h index 29097313..0a9bde35 100644 --- a/include/spdlog/sinks/ansicolor_sink.h +++ b/include/spdlog/sinks/ansicolor_sink.h @@ -49,7 +49,7 @@ public: } /// Formatting codes - const std::string reset = "\033[00m"; + const std::string reset = "\033[m"; const std::string bold = "\033[1m"; const std::string dark = "\033[2m"; const std::string underline = "\033[4m";