diff options
author | S-H-GAMELINKS <[email protected]> | 2023-04-20 21:56:38 +0900 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2023-04-27 15:16:42 +0200 |
commit | fef8cca822f6b69fe21cbab181ce5b5e0babff91 (patch) | |
tree | 33beba56fb88260a13eb7c2793e1663a9d1985b5 /variable.c | |
parent | a58cae77f77d220f44d0d16f2dbf4770ac64bd1e (diff) |
Merge T_OBJECT case in rb_ivar_delete function
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7746
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/variable.c b/variable.c index e8a66b0c36..48b72264c9 100644 --- a/variable.c +++ b/variable.c @@ -1239,11 +1239,6 @@ rb_ivar_delete(VALUE obj, ID id, VALUE undef) RB_VM_LOCK_LEAVE(); break; - case T_OBJECT: { - rb_shape_transition_shape_remove_ivar(obj, id, shape, &val); - - break; - } default: { rb_shape_transition_shape_remove_ivar(obj, id, shape, &val); |