mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +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>
|
template<typename Builder>
|
||||||
void JsonValue::serialize(Builder& builder) const
|
inline void JsonValue::serialize(Builder& builder) const
|
||||||
{
|
{
|
||||||
switch (m_type) {
|
switch (m_type) {
|
||||||
case Type::String:
|
case Type::String:
|
||||||
|
@ -176,7 +176,7 @@ void JsonValue::serialize(Builder& builder) const
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Builder>
|
template<typename Builder>
|
||||||
typename Builder::OutputType JsonValue::serialized() const
|
inline typename Builder::OutputType JsonValue::serialized() const
|
||||||
{
|
{
|
||||||
Builder builder;
|
Builder builder;
|
||||||
serialize(builder);
|
serialize(builder);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue