diff options
author | asynts <asynts@gmail.com> | 2021-01-10 16:21:56 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-11 11:55:47 +0100 |
commit | 723effd05152d2f9f2f8488b834a2ed2d88a4106 (patch) | |
tree | 4af99b7bea34166a58dcabd03323633aa8eee3f4 /AK | |
parent | 5931758dbc4561c6d14bc7dba25cffabb5e3ca9f (diff) | |
download | serenity-723effd05152d2f9f2f8488b834a2ed2d88a4106.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.Everything:
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Format.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/Format.h b/AK/Format.h index 63b1d3fab2..3a5ef0d6da 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -396,6 +396,7 @@ template<typename... Parameters> void dbgln(StringView fmtstr, const Parameters&... parameters) { vdbgln(fmtstr, VariadicFormatParams { parameters... }); } template<typename... Parameters> void dbgln(const char* fmtstr, const Parameters&... parameters) { dbgln(StringView { fmtstr }, parameters...); } +inline void dbgln() { dbgln(""); } template<typename T, typename = void> struct HasFormatter : TrueType { |