vm.c (mrb_exec_irep): remove recently added separate_module argument

The argument was added in #6512
This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-05-07 23:41:17 +09:00
parent ef0cbc2981
commit 41e91a2ca8
4 changed files with 7 additions and 14 deletions
+1 -1
View File
@@ -199,7 +199,7 @@ void mrb_gc_free_iv(mrb_state*, struct RObject*);
#define MRB_CI_SET_SEPARATE_MODULE(ci) MRB_FLAG_ENABLE((ci)->vis, 2)
mrb_int mrb_ci_bidx(mrb_callinfo *ci);
mrb_int mrb_ci_nregs(mrb_callinfo *ci);
mrb_value mrb_exec_irep(mrb_state *mrb, mrb_value self, const struct RProc *p, mrb_bool separate_module);
mrb_value mrb_exec_irep(mrb_state *mrb, mrb_value self, const struct RProc *p);
mrb_value mrb_obj_instance_eval(mrb_state*, mrb_value);
mrb_value mrb_object_exec(mrb_state *mrb, mrb_value self, struct RClass *target_class);
mrb_value mrb_mod_module_eval(mrb_state*, mrb_value);