From e1ebead8120aa27a3bdd14f00e468df1a4ff7a7e Mon Sep 17 00:00:00 2001 From: wujunze Date: Tue, 28 May 2019 11:39:05 +0800 Subject: [PATCH] php 70400 define ZEND_ACC_IMPLICIT_PUBLIC ZEND_ACC_PUBLIC --- include/php7_wrapper.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/php7_wrapper.h b/include/php7_wrapper.h index 701ce34..c3fa839 100644 --- a/include/php7_wrapper.h +++ b/include/php7_wrapper.h @@ -14,6 +14,10 @@ +----------------------------------------------------------------------+ */ +#if !defined(ZEND_ACC_IMPLICIT_PUBLIC) +# define ZEND_ACC_IMPLICIT_PUBLIC ZEND_ACC_PUBLIC +#endif + #if PHP_VERSION_ID >= 70000 # define SEASLOG_MAKE_ZVAL(z) zval _stack_zval_##z; z = &(_stack_zval_##z)