remove unused local variables; ref #2473

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-07-16 05:21:55 +09:00
parent dd34decdfc
commit abf52c7773
+1 -2
View File
@@ -178,8 +178,7 @@ mrb_value mrb_obj_instance_eval(mrb_state *mrb, mrb_value self);
static mrb_value
f_instance_eval(mrb_state *mrb, mrb_value self)
{
mrb_value b, ret;
struct RClass *c;
mrb_value b;
mrb_int argc; mrb_value *argv;
mrb_get_args(mrb, "*&", &argv, &argc, &b);