浏览代码

AK: Remove unused String[256] from JsonParser

This shrinks the JsonParser class from 2072 bytes to 24. :^)
Sam Atkins 3 年之前
父节点
当前提交
2362cc2943
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      AK/JsonParser.h

+ 0 - 2
AK/JsonParser.h

@@ -31,8 +31,6 @@ private:
     ErrorOr<JsonValue> parse_false();
     ErrorOr<JsonValue> parse_true();
     ErrorOr<JsonValue> parse_null();
-
-    String m_last_string_starting_with_character[256];
 };
 
 }