mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:37:34 +00:00
AK+Format: Remove TypeErasedFormatParams& from format function.
This commit is contained in:
parent
865f5ed4f6
commit
7e62ffbc6e
27 changed files with 129 additions and 134 deletions
|
@ -28,9 +28,9 @@
|
|||
#include <Kernel/VirtualAddress.h>
|
||||
|
||||
namespace AK {
|
||||
void Formatter<VirtualAddress>::format(TypeErasedFormatParams& params, FormatBuilder& builder, const VirtualAddress& value)
|
||||
void Formatter<VirtualAddress>::format(FormatBuilder& builder, const VirtualAddress& value)
|
||||
{
|
||||
Formatter<StringView>::format(params, builder, String::formatted("V{:p}", value.get()));
|
||||
Formatter<StringView>::format(builder, String::formatted("V{:p}", value.get()));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue