array.c: mrb_ary_shift_m should be static.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-05-02 20:30:41 +09:00
parent 14c13bb4d2
commit 4626348e47
+1 -1
View File
@@ -578,7 +578,7 @@ mrb_ary_shift(mrb_state *mrb, mrb_value self)
return val;
}
MRB_API mrb_value
static mrb_value
mrb_ary_shift_m(mrb_state *mrb, mrb_value self)
{
struct RArray *a = mrb_ary_ptr(self);