mirror of
https://github.com/rafagafe/tiny-json.git
synced 2024-11-17 11:35:30 +00:00
speed up large arrays
This commit is contained in:
parent
2f6c919986
commit
a2fdcc20e0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user