Remove the typedef from zend_types.h, use explicit struct prefix
instead.
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 7.4.0RC6
+- Core:
+ . Fixed bug #78768 (redefinition of typedef zend_property_info). (Nikita)
+
- Standard:
. Fixed bug #77930 (stream_copy_to_stream should use mmap more often).
(Nikita)
void *ptr;
};
-typedef struct _zend_property_info zend_property_info;
-
typedef struct {
size_t num;
size_t num_allocated;
- zend_property_info *ptr[1];
+ struct _zend_property_info *ptr[1];
} zend_property_info_list;
typedef union {
- zend_property_info *ptr;
+ struct _zend_property_info *ptr;
uintptr_t list;
} zend_property_info_source_list;