1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

eval.c: indent

* eval.c (using_module_recursive): adjust indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-12-13 03:53:18 +00:00
parent f2c319395d
commit b07bdbc2b3

6
eval.c
View file

@ -1152,15 +1152,15 @@ using_module_recursive(NODE *cref, VALUE klass)
using_module_recursive(cref, super);
}
switch (BUILTIN_TYPE(klass)) {
case T_MODULE:
case T_MODULE:
module = klass;
break;
case T_ICLASS:
case T_ICLASS:
module = RBASIC(klass)->klass;
break;
default:
default:
rb_raise(rb_eTypeError, "wrong argument type %s (expected Module)",
rb_obj_classname(klass));
break;