summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Haszlakiewicz <erh+git@nimenees.com>2014-09-13 22:18:14 -0400
committerEric Haszlakiewicz <erh+git@nimenees.com>2014-09-13 22:18:14 -0400
commit6ec6fdaf8c89dc78d2c0f1a3482a93195de110e3 (patch)
tree9730a25d462edd1967c0aa7a7d2530fd53561ddd
parent2c722277ee06dbbd615118ac29cde0036ffae4df (diff)
parent048dcf288a8a154395e50c109a183d291dbdfa4d (diff)
Merge pull request #151 from mjchinn/json_type-comma
Remove json_type enum trailing comma
-rw-r--r--json_object.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/json_object.h b/json_object.h
index 200ac40..0634758 100644
--- a/json_object.h
+++ b/json_object.h
@@ -105,7 +105,7 @@ typedef enum json_type {
json_type_int,
json_type_object,
json_type_array,
- json_type_string,
+ json_type_string
} json_type;
/* reference counting functions */
@@ -138,7 +138,7 @@ int json_object_put(struct json_object *obj);
json_type_int,
json_type_object,
json_type_array,
- json_type_string,
+ json_type_string
*/
extern int json_object_is_type(struct json_object *obj, enum json_type type);
@@ -154,7 +154,7 @@ extern int json_object_is_type(struct json_object *obj, enum json_type type);
json_type_int,
json_type_object,
json_type_array,
- json_type_string,
+ json_type_string
*/
extern enum json_type json_object_get_type(struct json_object *obj);