separate mrb_notimplement() and mrb_notimplement_m(); ref #2636

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-11-19 01:03:19 +09:00
parent 17507e4460
commit 5c6d6309b6
2 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -221,7 +221,7 @@ MRB_API struct RClass * mrb_class_get(mrb_state *mrb, const char *name);
MRB_API struct RClass * mrb_class_get_under(mrb_state *mrb, struct RClass *outer, const char *name);
MRB_API struct RClass * mrb_module_get(mrb_state *mrb, const char *name);
MRB_API struct RClass * mrb_module_get_under(mrb_state *mrb, struct RClass *outer, const char *name);
MRB_API mrb_value mrb_notimplement(mrb_state*, mrb_value);
MRB_API mrb_value mrb_notimplement_m(mrb_state*, mrb_value);
MRB_API mrb_value mrb_obj_dup(mrb_state *mrb, mrb_value obj);
MRB_API mrb_value mrb_check_to_integer(mrb_state *mrb, mrb_value val, const char *method);