From 9afda55d73cc2c1d688216c2349848545e488dd0 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Feb 2020 19:32:17 +0100 Subject: [PATCH] AK: Add some missing "inline" keywords in JsonObject.h --- AK/JsonObject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AK/JsonObject.h b/AK/JsonObject.h index 38e3da608b..5e44b5bcb3 100644 --- a/AK/JsonObject.h +++ b/AK/JsonObject.h @@ -132,7 +132,7 @@ inline typename Builder::OutputType JsonObject::serialized() const } template -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::OutputType JsonValue::serialized() const +inline typename Builder::OutputType JsonValue::serialized() const { Builder builder; serialize(builder);