summaryrefslogtreecommitdiff
path: root/ext/json/php_json_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/json/php_json_parser.h')
-rw-r--r--ext/json/php_json_parser.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/json/php_json_parser.h b/ext/json/php_json_parser.h
index 9a3f206667..edc6c4ee41 100644
--- a/ext/json/php_json_parser.h
+++ b/ext/json/php_json_parser.h
@@ -40,10 +40,6 @@ typedef int (*php_json_parser_func_object_start_t)(
php_json_parser *parser);
typedef int (*php_json_parser_func_object_end_t)(
php_json_parser *parser, zval *object);
-typedef int (*php_json_parser_func_depth_increase_t)(
- php_json_parser *parser);
-typedef int (*php_json_parser_func_depth_decrease_t)(
- php_json_parser *parser);
typedef struct _php_json_parser_methods {
php_json_parser_func_array_create_t array_create;
@@ -54,8 +50,6 @@ typedef struct _php_json_parser_methods {
php_json_parser_func_object_update_t object_update;
php_json_parser_func_object_start_t object_start;
php_json_parser_func_object_end_t object_end;
- php_json_parser_func_depth_increase_t depth_increase;
- php_json_parser_func_depth_decrease_t depth_decrease;
} php_json_parser_methods;
struct _php_json_parser {