summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-07-01 20:07:05 +0200
committerAnatol Belski <ab@php.net>2017-07-01 20:07:05 +0200
commit04d7595e58ed13c0c25d190e2a91c3d6a3d031ab (patch)
tree91a51833c088a1aabbf5818c07cdf137d8541536 /Zend
parent46ef3e237c1c51a558b2f892ad526016614aff00 (diff)
parent9d1575c4956cd0018ae0a8f7f393600a1de1f05a (diff)
downloadphp-git-04d7595e58ed13c0c25d190e2a91c3d6a3d031ab.tar.gz
Merge branch 'PHP-7.1'
* PHP-7.1: yet one C++ compat fix
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_object_handlers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h
index ecb4f6e1a0..f9577eab18 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);