mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:28:14 +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
|
@ -213,9 +213,9 @@ struct B {
|
|||
};
|
||||
template<>
|
||||
struct AK::Formatter<B> : Formatter<StringView> {
|
||||
void format(TypeErasedFormatParams& params, FormatBuilder& builder, B)
|
||||
void format(FormatBuilder& builder, B)
|
||||
{
|
||||
Formatter<StringView>::format(params, builder, "B");
|
||||
Formatter<StringView>::format(builder, "B");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue