From: Petri Lehtinen Date: Mon, 13 Jul 2009 18:39:51 +0000 (+0300) Subject: Get rid of JSON_SORT_KEYS dump flag X-Git-Tag: v1.0~23 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=1f65a3cae74ac4d022db398d2f2c3df13143219a;hp=902bcdaa5e0d0273b1ba576c2fd676a5565b6d5e;p=jansson.git Get rid of JSON_SORT_KEYS dump flag Object sorting will be implemented later. --- diff --git a/src/jansson.h b/src/jansson.h index 33b2f94..e90491a 100644 --- a/src/jansson.h +++ b/src/jansson.h @@ -98,7 +98,6 @@ json_t *json_loads(const char *input, json_error_t *error); json_t *json_loadf(FILE *input, json_error_t *error); #define JSON_INDENT(n) (n & 0xFF) -#define JSON_SORT_KEYS 0x100 int json_dump(const json_t *json, const char *path, uint32_t flags); char *json_dumps(const json_t *json, uint32_t flags);