diff options
author | Anatol Belski <ab@php.net> | 2014-09-14 11:26:17 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-09-14 11:26:17 +0200 |
commit | a9c188fbc664b392eab003f310ad4487a9a556ea (patch) | |
tree | eb84ed7573d91d8d8641d36d3b03d70d78d1d6d2 /ext/spl/spl_iterators.h | |
parent | 101adecbcd95eeffca5e0f73bf2a64d513de764d (diff) | |
download | php-git-a9c188fbc664b392eab003f310ad4487a9a556ea.tar.gz |
reduce struct size by 8 byte on 64 bit
Diffstat (limited to 'ext/spl/spl_iterators.h')
-rw-r--r-- | ext/spl/spl_iterators.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h index 7435ce7f27..91d9895e98 100644 --- a/ext/spl/spl_iterators.h +++ b/ext/spl/spl_iterators.h @@ -154,12 +154,12 @@ typedef struct _spl_dual_it_object { } append; #if HAVE_PCRE || HAVE_BUNDLED_PCRE struct { - int use_flags; - zend_long flags; - regex_mode mode; - zend_long preg_flags; + zend_long flags; + zend_long preg_flags; pcre_cache_entry *pce; zend_string *regex; + regex_mode mode; + int use_flags; } regex; #endif _spl_cbfilter_it_intern *cbfilter; |