speed up large arrays

This commit is contained in:
Joel Vandergriendt 2018-03-29 13:33:54 -07:00
parent 2f6c919986
commit a2fdcc20e0

View File

@ -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;