mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:47:35 +00:00
AK+Format: Do some housekeeping in the format implementation.
This commit is contained in:
parent
ac5e08a541
commit
6351a56d27
13 changed files with 476 additions and 640 deletions
|
@ -441,10 +441,10 @@ InputStream& operator>>(InputStream& stream, String& string)
|
|||
}
|
||||
}
|
||||
|
||||
String String::vformatted(StringView fmtstr, Span<const TypeErasedParameter> parameters)
|
||||
String String::vformatted(StringView fmtstr, TypeErasedFormatParams params)
|
||||
{
|
||||
StringBuilder builder;
|
||||
vformat(builder, fmtstr, parameters);
|
||||
vformat(builder, fmtstr, params);
|
||||
return builder.to_string();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue