Move the json_tokener_error_memory entry to the end of enum json_tokener_error to restore binary compatibility with 0.16

This commit is contained in:
Eric Hawicz
2023-08-12 13:54:50 -04:00
parent f7e9d8e216
commit 3dad6941da

View 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
};