mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
array.c (mrb_ary_aset): remove unnecessary ary_modify()
The `ary_modify()` is called in subsidiary functions.
This commit is contained in:
@@ -1030,7 +1030,6 @@ mrb_ary_aset(mrb_state *mrb, mrb_value self)
|
||||
mrb_value v1, v2, v3;
|
||||
mrb_int i, len;
|
||||
|
||||
ary_modify(mrb, mrb_ary_ptr(self));
|
||||
if (mrb_get_argc(mrb) == 2) {
|
||||
const mrb_value *vs = mrb_get_argv(mrb);
|
||||
v1 = vs[0]; v2 = vs[1];
|
||||
|
||||
Reference in New Issue
Block a user