zeev Wed Feb 25 09:58:48 2004 EDT Modified files: /php-src/ext/spl spl_iterators.c Log: Fix signature Marcus - please make sure that this is ok. Generally you are no longer allowed to override a method and with an incompatible signature http://cvs.php.net/diff.php/php-src/ext/spl/spl_iterators.c?r1=1.20&r2=1.21&ty=u Index: php-src/ext/spl/spl_iterators.c diff -u php-src/ext/spl/spl_iterators.c:1.20 php-src/ext/spl/spl_iterators.c:1.21 --- php-src/ext/spl/spl_iterators.c:1.20 Thu Feb 12 05:43:25 2004 +++ php-src/ext/spl/spl_iterators.c Wed Feb 25 09:58:47 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: spl_iterators.c,v 1.20 2004/02/12 10:43:25 zeev Exp $ */ +/* $Id: spl_iterators.c,v 1.21 2004/02/25 14:58:47 zeev Exp $ */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -1164,7 +1164,7 @@ } static -ZEND_BEGIN_ARG_INFO(arginfo_caching_rec_it___construct, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_caching_rec_it___construct, 0, ZEND_RETURN_REFERENCE_AGNOSTIC, 2) ZEND_ARG_INFO(0, iterator) ZEND_ARG_INFO(0, getStrVal) ZEND_ARG_INFO(0, catch_getChildren)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php