Commit b775bc77 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

remove unused variable

parent 54bc7e07
...@@ -134,7 +134,7 @@ exc_message(mrb_state *mrb, mrb_value exc) ...@@ -134,7 +134,7 @@ exc_message(mrb_state *mrb, mrb_value exc)
static mrb_value static mrb_value
exc_inspect(mrb_state *mrb, mrb_value exc) exc_inspect(mrb_state *mrb, mrb_value exc)
{ {
mrb_value str, klass; mrb_value str;
str = mrb_str_new2(mrb, mrb_obj_classname(mrb, exc)); str = mrb_str_new2(mrb, mrb_obj_classname(mrb, exc));
exc = mrb_obj_as_string(mrb, exc); exc = mrb_obj_as_string(mrb, exc);
......
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