mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:47:45 +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
|
@ -66,9 +66,9 @@ private:
|
|||
|
||||
template<>
|
||||
struct Formatter<LexicalPath> : Formatter<StringView> {
|
||||
void format(TypeErasedFormatParams& params, FormatBuilder& builder, const LexicalPath& value)
|
||||
void format(FormatBuilder& builder, const LexicalPath& value)
|
||||
{
|
||||
Formatter<StringView>::format(params, builder, value.string());
|
||||
Formatter<StringView>::format(builder, value.string());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue