summaryrefslogtreecommitdiff
path: root/ext/spl/spl_iterators.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-05-21 18:13:37 +0000
committerMarcus Boerger <helly@php.net>2006-05-21 18:13:37 +0000
commite3f89f116a82ec0f0e3597c09753a074691d1a66 (patch)
tree0640a0395d697a5ba0fe5ccfa729c2a5957c8061 /ext/spl/spl_iterators.h
parent75771301569ebbcb5bd5e3a4db325b955241404a (diff)
downloadphp-git-e3f89f116a82ec0f0e3597c09753a074691d1a66.tar.gz
- MFH
. Make code exception safe . Make RecursiveRegexIterator::getChildren pass regex to inner ctor . Fix CachingIterator::__toString() in TOSTRING_USE_KEY mode . Add CachingIterator::getCache() . Add tests
Diffstat (limited to 'ext/spl/spl_iterators.h')
-rwxr-xr-xext/spl/spl_iterators.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h
index 430fe7ec59..8a608def63 100755
--- a/ext/spl/spl_iterators.h
+++ b/ext/spl/spl_iterators.h
@@ -130,6 +130,7 @@ typedef struct _spl_dual_it_object {
struct {
int flags;
pcre_cache_entry *pce;
+ char *regex;
} regex;
#endif
} u;