AK: Rename new_out to out and new_warn to warn.

This commit is contained in:
asynts 2020-11-09 10:47:19 +01:00 committed by Andreas Kling
commit 3b3edbc4d2
Notes: sideshowbarker 2024-07-19 01:29:10 +09:00
10 changed files with 38 additions and 41 deletions

View file

@ -47,9 +47,9 @@ Print the value of EXPRESSION to standard output.)");
template<typename... Args>
[[noreturn]] void fail(Args&&... args)
{
new_warn("ERROR: \e[31m");
warn("ERROR: \e[31m");
warnln(args...);
new_warn("\e[0m");
warn("\e[0m");
exit(1);
}