diff options
author | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
commit | 4b30846b50b3c42d6787f82fe37525028e094a09 (patch) | |
tree | 22d19ea6d7814d03f3fb8587d996b37cb42841f8 /ext/spl/spl_array.c | |
parent | f1f2a649e299b9b997d38977909bd54c52f5c4e3 (diff) | |
download | php-git-4b30846b50b3c42d6787f82fe37525028e094a09.tar.gz |
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/spl/spl_array.c')
-rwxr-xr-x | ext/spl/spl_array.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index ed87df36ca..a4eecedfd6 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1861,7 +1861,7 @@ static const zend_function_entry spl_funcs_ArrayObject[] = { SPL_ME(Array, exchangeArray, arginfo_array_exchangeArray, ZEND_ACC_PUBLIC) SPL_ME(Array, setIteratorClass, arginfo_array_setIteratorClass, ZEND_ACC_PUBLIC) SPL_ME(Array, getIteratorClass, arginfo_array_void, ZEND_ACC_PUBLIC) - {NULL, NULL, NULL} + PHP_FE_END }; static const zend_function_entry spl_funcs_ArrayIterator[] = { @@ -1890,13 +1890,13 @@ static const zend_function_entry spl_funcs_ArrayIterator[] = { SPL_ME(Array, next, arginfo_array_void, ZEND_ACC_PUBLIC) SPL_ME(Array, valid, arginfo_array_void, ZEND_ACC_PUBLIC) SPL_ME(Array, seek, arginfo_array_seek, ZEND_ACC_PUBLIC) - {NULL, NULL, NULL} + PHP_FE_END }; static const zend_function_entry spl_funcs_RecursiveArrayIterator[] = { SPL_ME(Array, hasChildren, arginfo_array_void, ZEND_ACC_PUBLIC) SPL_ME(Array, getChildren, arginfo_array_void, ZEND_ACC_PUBLIC) - {NULL, NULL, NULL} + PHP_FE_END }; /* }}} */ |