mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
AK: Use StringBuilder::appendff() instead of appendf()
This commit is contained in:
parent
db0149056f
commit
764af6cdec
Notes:
sideshowbarker
2024-07-18 22:28:32 +09:00
Author: https://github.com/awesomekling
Commit: 764af6cdec
4 changed files with 11 additions and 11 deletions
|
@ -172,7 +172,7 @@ inline void JsonValue::serialize(Builder& builder) const
|
|||
break;
|
||||
#if !defined(KERNEL)
|
||||
case Type::Double:
|
||||
builder.appendf("%g", m_value.as_double);
|
||||
builder.appendff("{}", m_value.as_double);
|
||||
break;
|
||||
#endif
|
||||
case Type::Int32:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue