diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2013-02-15 10:20:55 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2013-02-15 10:20:55 +0900 |
| commit | 37fe3d666f12f4dbd0e2fc1688d83ece94667f4e (patch) | |
| tree | 695e54e43f56162d9dc6d49016dcfc0f78b5dd93 /include | |
| parent | 8578cd622ba6644a0421bcb35e44e0f7b2927a54 (diff) | |
| download | mruby-37fe3d666f12f4dbd0e2fc1688d83ece94667f4e.tar.gz mruby-37fe3d666f12f4dbd0e2fc1688d83ece94667f4e.zip | |
add Module#remove_const
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/variable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/variable.h b/include/mruby/variable.h index f2f22e65a..a1f52217d 100644 --- a/include/mruby/variable.h +++ b/include/mruby/variable.h @@ -37,6 +37,7 @@ void mrb_vm_const_set(mrb_state*, mrb_sym, mrb_value); mrb_value mrb_const_get(mrb_state*, mrb_value, mrb_sym); void mrb_const_set(mrb_state*, mrb_value, mrb_sym, mrb_value); int mrb_const_defined(mrb_state*, mrb_value, mrb_sym); +void mrb_const_remove(mrb_state*, mrb_value, mrb_sym); mrb_value mrb_obj_iv_get(mrb_state *mrb, struct RObject *obj, mrb_sym sym); void mrb_obj_iv_set(mrb_state *mrb, struct RObject *obj, mrb_sym sym, mrb_value v); |
