diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
commit | a524a375d928366cc971b938f386556d1ef3d6e7 (patch) | |
tree | dff59aca87c1d125c7ff194db7fd44cadb70c7af /Zend/zend_compile.h | |
parent | 8c8ad8f40ed9af2d95057a078dbaa844d072cb68 (diff) | |
download | php-git-a524a375d928366cc971b938f386556d1ef3d6e7.tar.gz |
Improved class type hints checks, by caching resolved class entries in run-time cache.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 1ed6e236b0..106d0fc475 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -300,7 +300,6 @@ typedef struct _zend_internal_arg_info { zend_uchar pass_by_reference; zend_bool allow_null; zend_bool is_variadic; - void *reserved; /* to align with zend_arg_info */ } zend_internal_arg_info; /* arg_info for user functions */ @@ -311,7 +310,6 @@ typedef struct _zend_arg_info { zend_uchar pass_by_reference; zend_bool allow_null; zend_bool is_variadic; - zend_string *lower_class_name; } zend_arg_info; /* the following structure repeats the layout of zend_internal_arg_info, |