mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-04 09:39:05 +00:00
Add comments
This commit is contained in:
parent
95410dbf33
commit
4506a85e6b
@ -22,8 +22,10 @@ static json_object *add_object(json_type type, json_object *parent) {
|
||||
|
||||
if (parent->type == JSON_HASH) {
|
||||
if (parent->hash != NULL && parent->hash->value == NULL) {
|
||||
// Hash has key but no value, so this is the value
|
||||
parent->hash->value = o;
|
||||
} else {
|
||||
// No current hash, so this is a key
|
||||
json_hash *h = malloc(sizeof(json_hash));
|
||||
h->next = parent->hash;
|
||||
h->key = o;
|
||||
|
Loading…
x
Reference in New Issue
Block a user