Browse Source

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

tags/json-c-0.17-20230812
Eric Hawicz 2 years ago
parent
commit
3dad6941da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      json_tokener.h

+ 1
- 1
json_tokener.h View File

@@ -28,7 +28,6 @@ enum json_tokener_error
json_tokener_success, json_tokener_success,
json_tokener_continue, json_tokener_continue,
json_tokener_error_depth, json_tokener_error_depth,
json_tokener_error_memory,
json_tokener_error_parse_eof, json_tokener_error_parse_eof,
json_tokener_error_parse_unexpected, json_tokener_error_parse_unexpected,
json_tokener_error_parse_null, json_tokener_error_parse_null,
@@ -41,6 +40,7 @@ enum json_tokener_error
json_tokener_error_parse_string, json_tokener_error_parse_string,
json_tokener_error_parse_comment, json_tokener_error_parse_comment,
json_tokener_error_parse_utf8_string, json_tokener_error_parse_utf8_string,
json_tokener_error_memory,
json_tokener_error_size json_tokener_error_size
}; };




Loading…
Cancel
Save