From: Andi Gutmans Date: Sun, 19 Aug 2001 15:23:25 +0000 (+0000) Subject: - Fix compile problem X-Git-Tag: PRE_SUBST_Z_MACROS~439 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=718f323edc89b6ac510669413f06f5c19215a005;p=php - Fix compile problem --- diff --git a/Zend/zend.h b/Zend/zend.h index 619ac2a050..c3276f71c3 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -191,14 +191,14 @@ typedef void (*del_ref_t)(zend_object_handle handle); typedef void (*delete_obj_t)(zend_object_handle handle); typedef zend_object_value (*clone_obj_t)(zend_object_handle handle); -typedef struct _zend_object_handlers { +struct _zend_object_handlers { get_address_t get_address; get_property_address_t get_property_address; add_ref_t add_ref; del_ref_t del_ref; delete_obj_t delete_obj; clone_obj_t clone_obj; -} zend_object_handlers; +}; #include "zend_objects.h"