Skip to content

Commit 1bbbd19

Browse files
committed
Use ZEND_HASH_MAP macro
1 parent 30c8ceb commit 1bbbd19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_inheritance.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1687,7 +1687,7 @@ void zend_build_properties_info_table(zend_class_entry *ce)
16871687
}
16881688
}
16891689

1690-
ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->properties_info, zend_string *key, prop) {
1690+
ZEND_HASH_MAP_FOREACH_STR_KEY_PTR(&ce->properties_info, zend_string *key, prop) {
16911691
if (prop->ce == ce && (prop->flags & ZEND_ACC_STATIC) == 0
16921692
&& !(prop->flags & ZEND_ACC_VIRTUAL)) {
16931693
const zend_property_info *root_prop = prop->prototype;

0 commit comments

Comments
 (0)