From e0b673e4e2f09dbb152dda6e71890cfc17733e2e Mon Sep 17 00:00:00 2001 From: Johannes Kapfhammer Date: Mon, 7 Oct 2019 13:10:16 +0200 Subject: [PATCH] reset bold after status line --- include/bits/soi-dbg.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bits/soi-dbg.hpp b/include/bits/soi-dbg.hpp index 0e7d202..f9ae4b5 100644 --- a/include/bits/soi-dbg.hpp +++ b/include/bits/soi-dbg.hpp @@ -183,7 +183,7 @@ auto dbg_print(const char (&msg)[N], std::string const &, char const *file, void dbg_print_status(char const *file, int line, char const *function_name) { std::cerr << ANSI_VALUE << "[" << file << ":" << line << " (" << function_name - << ")]" << ANSI_VALUE << '\n'; + << ")]" << ANSI_RESET << '\n'; } template T &&identity(T &&t) { return std::forward(t); }