Skip to content

Commit e02e307

Browse files
committed
* UNIX: fix issue with zend_always_inline void *zend_object_alloc_ex(const size_t obj_size, zend_class_entry *ce)
1 parent d9b90a4 commit e02e307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zend_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ zend_always_inline static void zend_object_ptr_reset(zend_object * destination)
114114
destination = NULL;
115115
}
116116

117-
zend_always_inline void *zend_object_alloc_ex(const size_t obj_size, zend_class_entry *ce)
117+
zend_always_inline static void *zend_object_alloc_ex(const size_t obj_size, zend_class_entry *ce)
118118
{
119119
return pecalloc(1, obj_size, 0);
120120
}

0 commit comments

Comments
 (0)