reset bold after status line

This commit is contained in:
Johannes Kapfhammer 2019-10-07 13:10:16 +02:00
parent e724f201fc
commit e0b673e4e2
1 changed files with 1 additions and 1 deletions

View File

@ -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 <typename T> T &&identity(T &&t) { return std::forward<T>(t); }