Skip to content

Commit 71e1847

Browse files
committed
Merge branch 'PHP-7.2'
* PHP-7.2: Added parenthesis
2 parents 73b675a + 4a4c72a commit 71e1847

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
@@ -942,8 +942,8 @@ static zend_always_inline int zend_check_arg_send_type(const zend_function *zf,
942942
#define ZEND_RETURN_REF 1
943943

944944

945-
#define ZEND_RETURNS_FUNCTION 1<<0
946-
#define ZEND_RETURNS_VALUE 1<<1
945+
#define ZEND_RETURNS_FUNCTION (1<<0)
946+
#define ZEND_RETURNS_VALUE (1<<1)
947947

948948
#define ZEND_ARRAY_ELEMENT_REF (1<<0)
949949
#define ZEND_ARRAY_NOT_PACKED (1<<1)

0 commit comments

Comments
 (0)