Commit d77e521e authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2269 from suzukaze/delete-semicolon

Delete unnecessary semicolon
parents 274c99c4 0388e373
...@@ -91,7 +91,7 @@ mrb_proc_copy(struct RProc *a, struct RProc *b) ...@@ -91,7 +91,7 @@ mrb_proc_copy(struct RProc *a, struct RProc *b)
a->body = b->body; a->body = b->body;
if (!MRB_PROC_CFUNC_P(a)) { if (!MRB_PROC_CFUNC_P(a)) {
a->body.irep->refcnt++; a->body.irep->refcnt++;
}; }
a->target_class = b->target_class; a->target_class = b->target_class;
a->env = b->env; a->env = b->env;
} }
......
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