diff options
author | Anatol Belski <ab@php.net> | 2017-07-01 18:56:32 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-07-01 20:05:11 +0200 |
commit | d0b7eed0c9d873a0606dbbc7e33f14492f1a3dd6 (patch) | |
tree | 9ec006b5c120e17f61fcc7059211baa572d08a2d /Zend/zend_object_handlers.h | |
parent | c71b773a626d2895983bda0b5eed137c79b3c93a (diff) | |
download | php-git-d0b7eed0c9d873a0606dbbc7e33f14492f1a3dd6.tar.gz |
yet one C++ compat fix
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r-- | Zend/zend_object_handlers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h index 63a7718325..b65edad55e 100644 --- a/Zend/zend_object_handlers.h +++ b/Zend/zend_object_handlers.h @@ -155,12 +155,12 @@ struct _zend_object_handlers { zend_object_compare_zvals_t compare; }; +BEGIN_EXTERN_C() extern ZEND_API zend_object_handlers std_object_handlers; #define zend_get_function_root_class(fbc) \ ((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope) -BEGIN_EXTERN_C() ZEND_API union _zend_function *zend_std_get_static_method(zend_class_entry *ce, zend_string *function_name_strval, const zval *key); ZEND_API zval *zend_std_get_static_property(zend_class_entry *ce, zend_string *property_name, zend_bool silent); ZEND_API ZEND_COLD zend_bool zend_std_unset_static_property(zend_class_entry *ce, zend_string *property_name); |