Skip to content

Commit d5ee081

Browse files
committed
Add missing field initializer
To fix -Wmissing-field-initializers warning.
1 parent 7968ce9 commit d5ee081

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/intl/common/common_enum.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ static const zend_object_iterator_funcs string_enum_object_iterator_funcs = {
133133
NULL,
134134
string_enum_current_move_forward,
135135
string_enum_rewind,
136-
zoi_with_current_invalidate_current
136+
zoi_with_current_invalidate_current,
137+
NULL, /* get_gc */
137138
};
138139

139140
U_CFUNC void IntlIterator_from_StringEnumeration(StringEnumeration *se, zval *object)

0 commit comments

Comments
 (0)