summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:49 +0300
committerDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:49 +0300
commit71e18471f2ee0b0c39ee262186f6cae5919e15c8 (patch)
tree1ba2eafd3ed2db4b473dec34c1b8edcbd3cd92cf
parent73b675a988961903757742f715fc0470d148f40c (diff)
parent4a4c72a82a4c5916b51d0387a301e65a1615e18a (diff)
downloadphp-git-71e18471f2ee0b0c39ee262186f6cae5919e15c8.tar.gz
Merge branch 'PHP-7.2'
* PHP-7.2: Added parenthesis
-rw-r--r--Zend/zend_compile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 747ea8c34a..9e75e5f870 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -942,8 +942,8 @@ static zend_always_inline int zend_check_arg_send_type(const zend_function *zf,
#define ZEND_RETURN_REF 1
-#define ZEND_RETURNS_FUNCTION 1<<0
-#define ZEND_RETURNS_VALUE 1<<1
+#define ZEND_RETURNS_FUNCTION (1<<0)
+#define ZEND_RETURNS_VALUE (1<<1)
#define ZEND_ARRAY_ELEMENT_REF (1<<0)
#define ZEND_ARRAY_NOT_PACKED (1<<1)