1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Remove #includes from jv.h

This commit is contained in:
Stephen Dolan
2013-06-23 14:23:07 +01:00
parent 8c2e228c74
commit 37cfc912c1
9 changed files with 19 additions and 15 deletions

View File

@@ -125,9 +125,9 @@ static void jv_test() {
jv_free(a2);
assert(a.val.nontrivial.ptr->count == 1);
assert(jv_get_refcnt(a) == 1);
a = jv_array_append(a, jv_copy(a));
assert(a.val.nontrivial.ptr->count == 1);
assert(jv_get_refcnt(a) == 1);
assert(jv_array_length(jv_copy(a)) == 2);
assert(jv_number_value(jv_array_get(jv_copy(a), 0)) == 42);