diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
commit | ef1e5db1d063f55e57b1d7623ea7154583fc95ad (patch) | |
tree | fb92514e07f4017cb899258137c817c07da9d5c5 /AK/Format.h | |
parent | 423ed5339651a2646c64ee4fd7b3b32bb7f8c942 (diff) | |
download | serenity-ef1e5db1d063f55e57b1d7623ea7154583fc95ad.zip |
Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)
Good-bye LogStream. Long live AK::Format!
Diffstat (limited to 'AK/Format.h')
-rw-r--r-- | AK/Format.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/AK/Format.h b/AK/Format.h index c7b5400e30..8da01d3b26 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -364,7 +364,6 @@ struct Formatter<std::nullptr_t> : Formatter<FlatPtr> { }; void vformat(StringBuilder&, StringView fmtstr, TypeErasedFormatParams); -void vformat(const LogStream& stream, StringView fmtstr, TypeErasedFormatParams); #ifndef KERNEL void vout(FILE*, StringView fmtstr, TypeErasedFormatParams, bool newline = false); |