]> granicus.if.org Git - json-c/commitdiff
Add back in the __attribute__((__unused__)) that was lost in the previous commit.
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Aug 2015 03:59:49 +0000 (23:59 -0400)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Aug 2015 04:00:12 +0000 (00:00 -0400)
It's needed to squash a "variable 'val' set but not used" warning.

json_object.h

index c9c583ee8bcf40de7b3d62a980de94f406877598..a6b6c011c1bdfc1dc5c0681c9f0816d981a00702 100644 (file)
@@ -353,7 +353,7 @@ extern void json_object_object_del(struct json_object* obj, const char *key);
 
 # define json_object_object_foreach(obj,key,val) \
        char *key = NULL; \
-       struct json_object *val = NULL; \
+       struct json_object *val __attribute__((__unused__)) = NULL; \
        for(struct lh_entry *entry ## key = json_object_get_object(obj)->head, *entry_next ## key = NULL; \
                ({ if(entry ## key) { \
                        key = (char*)entry ## key->k; \