diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-05-05 00:21:23 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-05-05 00:21:23 +0900 |
| commit | eac8e4a303f5e607b151305dfdc811251e52d1ce (patch) | |
| tree | a69efc2ec66d047c2bb9b79ab874526a62d311f2 /src/class.c | |
| parent | 0248ea5ddbe10e43ae66f0fe63085fac58b0bc89 (diff) | |
| download | mruby-eac8e4a303f5e607b151305dfdc811251e52d1ce.tar.gz mruby-eac8e4a303f5e607b151305dfdc811251e52d1ce.zip | |
move mrb_obj_is_instance_of from range.c to kernel.c
Diffstat (limited to 'src/class.c')
| -rw-r--r-- | src/class.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c index 366bde96d..5f98cf696 100644 --- a/src/class.c +++ b/src/class.c @@ -835,7 +835,8 @@ mrb_check_inheritable(mrb_state *mrb, struct RClass *super) * \param super a class from which the new class derives. * \exception TypeError \a super is not inheritable. * \exception TypeError \a super is the Class class. - */struct RClass * + */ +struct RClass * mrb_class_new(mrb_state *mrb, struct RClass *super) { struct RClass *c; |
