diff options
author | Jakub Zelenka <bukka@php.net> | 2016-05-02 13:02:40 +0100 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2016-05-02 13:02:40 +0100 |
commit | 37048c0f6cef53b015c04c8370f94e6597588fdc (patch) | |
tree | d2a4059d9140b98539be129c61bcac99f6ce8be2 /ext/json/php_json_parser.h | |
parent | 93b67dd511fdf890931e2b18846886368798ca5a (diff) | |
download | php-git-37048c0f6cef53b015c04c8370f94e6597588fdc.tar.gz |
Use embedded json parser method structure
Diffstat (limited to 'ext/json/php_json_parser.h')
-rw-r--r-- | ext/json/php_json_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/php_json_parser.h b/ext/json/php_json_parser.h index edc6c4ee41..997213f42e 100644 --- a/ext/json/php_json_parser.h +++ b/ext/json/php_json_parser.h @@ -57,7 +57,7 @@ struct _php_json_parser { zval *return_value; unsigned int depth; int max_depth; - const php_json_parser_methods *methods; + php_json_parser_methods methods; }; PHP_JSON_API void php_json_parser_init_ex( |