From 67de10bfcb9d9ff21e1aa678aff8afa10446b7c4 Mon Sep 17 00:00:00 2001 From: cubicdaiya Date: Sat, 1 Mar 2014 03:31:45 +0900 Subject: use C style comments instead of C++ style comments According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines. --- src/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vm.c') diff --git a/src/vm.c b/src/vm.c index ffdd2e5dd..c113e67d7 100644 --- a/src/vm.c +++ b/src/vm.c @@ -1320,7 +1320,7 @@ mrb_context_run(mrb_state *mrb, struct RProc *proc, mrb_value self, unsigned int switch (GETARG_B(i)) { case OP_R_RETURN: - // Fall through to OP_R_NORMAL otherwise + /* Fall through to OP_R_NORMAL otherwise */ if (proc->env && !MRB_PROC_STRICT_P(proc)) { struct REnv *e = top_env(mrb, proc); -- cgit v1.2.3