summaryrefslogtreecommitdiff
path: root/AK/JsonObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'AK/JsonObject.h')
-rw-r--r--AK/JsonObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/JsonObject.h b/AK/JsonObject.h
index 4c50d09c48..a61ab44ed3 100644
--- a/AK/JsonObject.h
+++ b/AK/JsonObject.h
@@ -148,7 +148,7 @@ inline void JsonValue::serialize(Builder& builder) const
case Type::Bool:
builder.append(m_value.as_bool ? "true" : "false");
break;
-#if !defined(KERNEL) && !defined(BOOTSTRAPPER)
+#if !defined(KERNEL)
case Type::Double:
builder.appendf("%g", m_value.as_double);
break;