diff options
Diffstat (limited to 'ext/spl/spl_heap.c')
-rw-r--r-- | ext/spl/spl_heap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/spl/spl_heap.c b/ext/spl/spl_heap.c index 0a694f6e78..3e8a73d021 100644 --- a/ext/spl/spl_heap.c +++ b/ext/spl/spl_heap.c @@ -1068,7 +1068,8 @@ static const zend_object_iterator_funcs spl_heap_it_funcs = { spl_heap_it_get_current_key, spl_heap_it_move_forward, spl_heap_it_rewind, - NULL + NULL, + NULL, /* get_gc */ }; static const zend_object_iterator_funcs spl_pqueue_it_funcs = { @@ -1078,7 +1079,8 @@ static const zend_object_iterator_funcs spl_pqueue_it_funcs = { spl_heap_it_get_current_key, spl_heap_it_move_forward, spl_heap_it_rewind, - NULL + NULL, + NULL, /* get_gc */ }; zend_object_iterator *spl_heap_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{ */ |