diff options
author | Alex Dowad <alexinbeijing@gmail.com> | 2020-04-22 08:38:42 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-04-23 10:05:21 +0200 |
commit | c36b9e93fa06e48fdedb0260a8e5817902da0545 (patch) | |
tree | c458c0c4ac3a5e59577cb5cf4bd9b58298633c16 | |
parent | 03ad54af96e50eae5520a4b6553170016a4b54bb (diff) | |
download | php-git-c36b9e93fa06e48fdedb0260a8e5817902da0545.tar.gz |
Remove unneeded prototype for spl_array_get_iterator
-rw-r--r-- | ext/spl/spl_array.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 40d74d9671..7b86de804e 100644 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -161,8 +161,6 @@ static void spl_array_object_free_storage(zend_object *object) } /* }}} */ -zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref); - /* {{{ spl_array_object_new_ex */ static zend_object *spl_array_object_new_ex(zend_class_entry *class_type, zend_object *orig, int clone_orig) { |