diff options
author | Xinchen Hui <laruence@php.net> | 2015-06-13 11:03:50 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-06-13 11:03:50 +0800 |
commit | 30a8000ca11c719f1807c346908b3a4e8537dbbe (patch) | |
tree | ee65bd49fcf6cb20f4a9db4e79b488c105de6784 /Zend/zend_compile.h | |
parent | 20d85e4f0214035e41e6f2c33dd11ffb5c37e8ca (diff) | |
download | php-git-30a8000ca11c719f1807c346908b3a4e8537dbbe.tar.gz |
We are allowed to break ABI now...
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index eccbb84aff..a102b403c7 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -291,24 +291,24 @@ typedef struct _zend_property_info { /* arg_info for internal functions */ typedef struct _zend_internal_arg_info { - const char *name; - const char *class_name; - zend_uchar type_hint; - zend_uchar pass_by_reference; - zend_bool allow_null; - zend_bool is_variadic; - void *reserved; /* to align with zend_arg_info */ + const char *name; + const char *class_name; + zend_string *lower_class_name; /* to align with zend_arg_info */ + zend_uchar type_hint; + zend_uchar pass_by_reference; + zend_bool allow_null; + zend_bool is_variadic; } zend_internal_arg_info; /* arg_info for user functions */ typedef struct _zend_arg_info { zend_string *name; zend_string *class_name; - zend_uchar type_hint; - zend_uchar pass_by_reference; - zend_bool allow_null; - zend_bool is_variadic; zend_string *lower_class_name; + zend_uchar type_hint; + zend_uchar pass_by_reference; + zend_bool allow_null; + zend_bool is_variadic; } zend_arg_info; /* the following structure repeats the layout of zend_internal_arg_info, |