From a9c188fbc664b392eab003f310ad4487a9a556ea Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 14 Sep 2014 11:26:17 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/spl/spl_iterators.h | 8 ++++---- 1 file 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; -- 2.40.0