]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Move the json_tokener_error_memory entry to the end of enum json_tokener_error to...
authorEric Hawicz <erh+git@nimenees.com>
Sat, 12 Aug 2023 17:54:50 +0000 (13:54 -0400)
committerEric Hawicz <erh+git@nimenees.com>
Sat, 12 Aug 2023 17:54:50 +0000 (13:54 -0400)
json_tokener.h

index c1502e8294116553a26cfc99e6e0456f0816b1d3..77abc5c18dc59c1588c9802c3f65c9e1a967b248 100644 (file)
@@ -28,7 +28,6 @@ enum json_tokener_error
        json_tokener_success,
        json_tokener_continue,
        json_tokener_error_depth,
-       json_tokener_error_memory,
        json_tokener_error_parse_eof,
        json_tokener_error_parse_unexpected,
        json_tokener_error_parse_null,
@@ -41,6 +40,7 @@ enum json_tokener_error
        json_tokener_error_parse_string,
        json_tokener_error_parse_comment,
        json_tokener_error_parse_utf8_string,
+       json_tokener_error_memory,
        json_tokener_error_size
 };