diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-11-19 01:03:19 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-11-19 01:03:19 +0900 |
| commit | 5c6d6309b6b5e01ef3ff38f772e0fdd3fc5dd372 (patch) | |
| tree | 52235765d4c8780fd535813d3d1c2eb549ec20d6 /include/mruby.h | |
| parent | 17507e4460b179c9dfef7e3af7abc24507c3e67e (diff) | |
| download | mruby-5c6d6309b6b5e01ef3ff38f772e0fdd3fc5dd372.tar.gz mruby-5c6d6309b6b5e01ef3ff38f772e0fdd3fc5dd372.zip | |
separate mrb_notimplement() and mrb_notimplement_m(); ref #2636
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h index fb3e5f30d..a4b3f1166 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -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); |
