cJSON.h: Deprecate valueint

This commit is contained in:
Max Bruckner 2017-04-01 22:56:04 +02:00
parent 29cfc7a767
commit 5916f70640

View File

@ -63,7 +63,7 @@ typedef struct cJSON
/* The item's string, if type==cJSON_String and type == cJSON_Raw */
char *valuestring;
/* The item's number, if type==cJSON_Number */
/* DEPRECATED, use valuedouble instead */
int valueint;
/* The item's number, if type==cJSON_Number */
double valuedouble;