projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19f8217
)
reduce the struct size by 8 byte on 64 bit
author
Anatol Belski
<ab@php.net>
Wed, 17 Sep 2014 07:10:26 +0000
(09:10 +0200)
committer
Anatol Belski
<ab@php.net>
Wed, 17 Sep 2014 07:10:26 +0000
(09:10 +0200)
ext/spl/spl_dllist.c
patch
|
blob
|
history
diff --git
a/ext/spl/spl_dllist.c
b/ext/spl/spl_dllist.c
index e02b9b2e83fe2131025b56fd8920ddebb09ade09..1bd4bf49d5ffedac393e30b00768c580660eebcc 100644
(file)
--- a/
ext/spl/spl_dllist.c
+++ b/
ext/spl/spl_dllist.c
@@
-101,8
+101,8
@@
struct _spl_dllist_object {
/* define an overloaded iterator structure */
struct _spl_dllist_it {
zend_user_iterator intern;
- int traverse_position;
spl_ptr_llist_element *traverse_pointer;
+ int traverse_position;
int flags;
};