mirror of
https://github.com/json-c/json-c.git
synced 2026-04-05 05:19:07 +08:00
Simplify things by storing integer values only as int64_t's internally, and
omit the range check during parsing since we already have the checks when accessing the value. There is no longer a json_type_int64, only json_type_int. Fix some problems with parsing 0 and -0 values, and add a couple of tests. Fix some minor compile issues on HPUX environments. git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@60 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
@@ -30,7 +30,6 @@ struct json_object
|
||||
union data {
|
||||
boolean c_boolean;
|
||||
double c_double;
|
||||
int32_t c_int;
|
||||
int64_t c_int64;
|
||||
struct lh_table *c_object;
|
||||
struct array_list *c_array;
|
||||
|
||||
Reference in New Issue
Block a user