diff options
| -rw-r--r-- | gc.c | 2 | ||||
| -rw-r--r-- | internal/class.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -7349,7 +7349,7 @@ gc_mark_children(rb_objspace_t *objspace, VALUE obj) VALUE klass = RBASIC_CLASS(obj); // Increment max_iv_count if applicable, used to determine size pool allocation - uint32_t num_of_ivs = shape->next_iv_index; + attr_index_t num_of_ivs = shape->next_iv_index; if (RCLASS_EXT(klass)->max_iv_count < num_of_ivs) { RCLASS_EXT(klass)->max_iv_count = num_of_ivs; } diff --git a/internal/class.h b/internal/class.h index 9e47a339c1..9f933c1fee 100644 --- a/internal/class.h +++ b/internal/class.h @@ -65,7 +65,7 @@ struct rb_classext_struct { #if !SHAPE_IN_BASIC_FLAGS shape_id_t shape_id; #endif - uint32_t max_iv_count; + attr_index_t max_iv_count; unsigned char variation_count; bool permanent_classpath; VALUE classpath; |
