summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:39 +0300
committerDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:39 +0300
commit4a4c72a82a4c5916b51d0387a301e65a1615e18a (patch)
treeeb16d23d8139facd8f026bd2bab06610b3647388
parentd95ee275513f0c59a26df82ebad1f88b348056e9 (diff)
parent1f726c99254f96b363890e7d2e2c58eca2d62500 (diff)
downloadphp-git-4a4c72a82a4c5916b51d0387a301e65a1615e18a.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: 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 af83311d62..b9345e4384 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -968,8 +968,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)