summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:23 +0300
committerDmitry Stogov <dmitry@zend.com>2018-06-22 12:04:23 +0300
commit1f726c99254f96b363890e7d2e2c58eca2d62500 (patch)
tree815eafaa8f1fb9b564b9b6c6f21cc65d78955e0f
parent11507c0e1bfa17a96480f3648397f6975c31551e (diff)
downloadphp-git-1f726c99254f96b363890e7d2e2c58eca2d62500.tar.gz
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 fff6d03917..f64d20c37b 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -959,8 +959,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)