mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Adding back "const".
This commit is contained in:

committed by
Max Bruckner

parent
238ceec175
commit
c786cd9714
2
cJSON.c
2
cJSON.c
@ -1695,7 +1695,7 @@ CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON *object, const char *strin
|
||||
return c;
|
||||
}
|
||||
|
||||
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * object, const char * string)
|
||||
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string)
|
||||
{
|
||||
cJSON *current_element = NULL;
|
||||
|
||||
|
Reference in New Issue
Block a user