Skip to content

Commit 4a4c72a

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Added parenthesis
2 parents d95ee27 + 1f726c9 commit 4a4c72a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_compile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -968,8 +968,8 @@ static zend_always_inline int zend_check_arg_send_type(const zend_function *zf,
968968
#define ZEND_RETURN_REF 1
969969

970970

971-
#define ZEND_RETURNS_FUNCTION 1<<0
972-
#define ZEND_RETURNS_VALUE 1<<1
971+
#define ZEND_RETURNS_FUNCTION (1<<0)
972+
#define ZEND_RETURNS_VALUE (1<<1)
973973

974974
#define ZEND_ARRAY_ELEMENT_REF (1<<0)
975975
#define ZEND_ARRAY_NOT_PACKED (1<<1)

0 commit comments

Comments
 (0)