diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-07 15:20:00 +0200 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-10 00:04:53 +0200 |
commit | 4ec75539dba8cefef16e56f02c62755a9aa9c60b (patch) | |
tree | 21437d4d80b94eb510158b7d31fbbd34bd45ab90 /ext/intl/common/common_enum.h | |
parent | c6593a0e9b3ea1a6045f8a52a1b9d8bce4d63773 (diff) | |
download | php-git-4ec75539dba8cefef16e56f02c62755a9aa9c60b.tar.gz |
Change in BreakIterator::getPartsIterator()
BreakIterator::getPartsIterator() now returns an IntlIterator subclass
with a special method, getBreakIterator(), that returns the
associated BreakIterator.
Any call to getRuleStatus() is forwarded to the BreakIterator.
Diffstat (limited to 'ext/intl/common/common_enum.h')
-rw-r--r-- | ext/intl/common/common_enum.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/intl/common/common_enum.h b/ext/intl/common/common_enum.h index bcd9f44796..4c6abdb8f5 100644 --- a/ext/intl/common/common_enum.h +++ b/ext/intl/common/common_enum.h @@ -61,6 +61,7 @@ typedef struct { } zoi_with_current; extern zend_class_entry *IntlIterator_ce_ptr; +extern zend_object_handlers IntlIterator_handlers; U_CFUNC void zoi_with_current_dtor(zend_object_iterator *iter TSRMLS_DC); U_CFUNC int zoi_with_current_valid(zend_object_iterator *iter TSRMLS_DC); |