From a2fdcc20e03d7ce25b768eb70ff405dfd1966847 Mon Sep 17 00:00:00 2001 From: Joel Vandergriendt Date: Thu, 29 Mar 2018 13:33:54 -0700 Subject: [PATCH] speed up large arrays --- tiny-json.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tiny-json.h b/tiny-json.h index 78e4e19..365ce7a 100644 --- a/tiny-json.h +++ b/tiny-json.h @@ -43,7 +43,10 @@ typedef struct json_s { char const* name; union { char const* value; - struct json_s* child; + struct { + struct json_s* child; + struct json_s* last_child; + }; } u; jsonType_t type; } json_t;