1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 05:47:34 +00:00

LibRegex: Convert String::format() => String::formatted()

This commit is contained in:
Andreas Kling 2021-04-21 23:02:27 +02:00
parent 46209ee9d0
commit c68dcf45b6
3 changed files with 12 additions and 12 deletions

View file

@ -692,7 +692,7 @@ ALWAYS_INLINE void OpCode_Compare::compare_character_range(const MatchInput& inp
const String OpCode_Compare::arguments_string() const
{
return String::format("argc=%lu, args=%lu ", arguments_count(), arguments_size());
return String::formatted("argc={}, args={} ", arguments_count(), arguments_size());
}
const Vector<String> OpCode_Compare::variable_arguments_to_string(Optional<MatchInput> input) const