mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
AK: Add some missing "inline" keywords in JsonObject.h
This commit is contained in:
parent
be6a31dde1
commit
9afda55d73
1 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ inline typename Builder::OutputType JsonObject::serialized() const
|
|||
}
|
||||
|
||||
template<typename Builder>
|
||||
void JsonValue::serialize(Builder& builder) const
|
||||
inline void JsonValue::serialize(Builder& builder) const
|
||||
{
|
||||
switch (m_type) {
|
||||
case Type::String:
|
||||
|
@ -176,7 +176,7 @@ void JsonValue::serialize(Builder& builder) const
|
|||
}
|
||||
|
||||
template<typename Builder>
|
||||
typename Builder::OutputType JsonValue::serialized() const
|
||||
inline typename Builder::OutputType JsonValue::serialized() const
|
||||
{
|
||||
Builder builder;
|
||||
serialize(builder);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue