@@ -156,7 +156,7 @@ typedef struct _zend_fcall_info_cache {
156
156
157
157
#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2 (name , return_reference , required_num_args , class_name , allow_null , is_tentative_return_type ) \
158
158
static const zend_internal_arg_info name[] = { \
159
- { (const char*)(zend_uintptr_t )(required_num_args), \
159
+ { (const char*)(uintptr_t )(required_num_args), \
160
160
ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
161
161
162
162
#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX (name , return_reference , required_num_args , class_name , allow_null ) \
@@ -170,7 +170,7 @@ typedef struct _zend_fcall_info_cache {
170
170
171
171
#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2 (name , return_reference , required_num_args , type , is_tentative_return_type ) \
172
172
static const zend_internal_arg_info name[] = { \
173
- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
173
+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
174
174
175
175
#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX (name , return_reference , required_num_args , type ) \
176
176
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2(name, return_reference, required_num_args, type, 0)
@@ -180,7 +180,7 @@ typedef struct _zend_fcall_info_cache {
180
180
181
181
#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2 (name , return_reference , required_num_args , class_name , type , is_tentative_return_type ) \
182
182
static const zend_internal_arg_info name[] = { \
183
- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
183
+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
184
184
185
185
#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX (name , return_reference , required_num_args , class_name , type ) \
186
186
ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2(name, return_reference, required_num_args, class_name, type, 0)
@@ -190,7 +190,7 @@ typedef struct _zend_fcall_info_cache {
190
190
191
191
#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2 (name , return_reference , required_num_args , type , allow_null , is_tentative_return_type ) \
192
192
static const zend_internal_arg_info name[] = { \
193
- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
193
+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
194
194
195
195
#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX (name , return_reference , required_num_args , type , allow_null ) \
196
196
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, return_reference, required_num_args, type, allow_null, 0)
@@ -203,7 +203,7 @@ typedef struct _zend_fcall_info_cache {
203
203
204
204
#define ZEND_BEGIN_ARG_INFO_EX (name , _unused , return_reference , required_num_args ) \
205
205
static const zend_internal_arg_info name[] = { \
206
- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(return_reference, 0, 0)), NULL },
206
+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(return_reference, 0, 0)), NULL },
207
207
#define ZEND_BEGIN_ARG_INFO (name , _unused ) \
208
208
ZEND_BEGIN_ARG_INFO_EX(name, {}, ZEND_RETURN_VALUE, -1)
209
209
#define ZEND_END_ARG_INFO () };
0 commit comments