Fix kostya<yyjson> issue
This commit is contained in:
parent
680cd6df34
commit
065ea00066
|
@ -31,7 +31,7 @@ public:
|
||||||
yyjson_val *root = yyjson_doc_get_root(doc);
|
yyjson_val *root = yyjson_doc_get_root(doc);
|
||||||
if (!yyjson_is_obj(root)) { return false; }
|
if (!yyjson_is_obj(root)) { return false; }
|
||||||
yyjson_val *coords = yyjson_obj_get(root, "coordinates");
|
yyjson_val *coords = yyjson_obj_get(root, "coordinates");
|
||||||
if (!yyjson_is_obj(coords)) { return false; }
|
if (!yyjson_is_arr(coords)) { return false; }
|
||||||
|
|
||||||
size_t idx, max;
|
size_t idx, max;
|
||||||
yyjson_val *coord;
|
yyjson_val *coord;
|
||||||
|
|
Loading…
Reference in New Issue