Skip to content

Commit c2c5b05

Browse files
committed
Unexpectedly miss-fixed macro during rebase
1 parent f0b41ef commit c2c5b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

variable.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4806,7 +4806,7 @@ rb_fields_tbl_copy(VALUE dst, VALUE src)
48064806
RUBY_ASSERT(RB_TYPE_P(dst, T_CLASS) || RB_TYPE_P(dst, T_MODULE));
48074807

48084808
RUBY_ASSERT(rb_obj_shape(dst)->type == SHAPE_ROOT);
4809-
RUBY_ASSERT(!RCLASS_FIELDS(dst));
4809+
RUBY_ASSERT(!RCLASS_PRIME_FIELDS(dst));
48104810

48114811
rb_ivar_foreach(src, tbl_copy_i, dst);
48124812
}

0 commit comments

Comments
 (0)