mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
AK+Format: Remove TypeErasedFormatParams& from format function.
This commit is contained in:
@@ -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()));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user