remove unused local variables; ref #2473

parent dd34decd
...@@ -178,8 +178,7 @@ mrb_value mrb_obj_instance_eval(mrb_state *mrb, mrb_value self); ...@@ -178,8 +178,7 @@ mrb_value mrb_obj_instance_eval(mrb_state *mrb, mrb_value self);
static mrb_value static mrb_value
f_instance_eval(mrb_state *mrb, mrb_value self) f_instance_eval(mrb_state *mrb, mrb_value self)
{ {
mrb_value b, ret; mrb_value b;
struct RClass *c;
mrb_int argc; mrb_value *argv; mrb_int argc; mrb_value *argv;
mrb_get_args(mrb, "*&", &argv, &argc, &b); mrb_get_args(mrb, "*&", &argv, &argc, &b);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment