From 5b5313ec97c6d24ebd4ea1d31ce2a44e25d587ee Mon Sep 17 00:00:00 2001 From: Tatsuhiko Kubo Date: Sun, 13 Jul 2014 00:24:45 +0900 Subject: use C style comments instead of C++ style comments --- src/proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/proc.c') diff --git a/src/proc.c b/src/proc.c index 1511725d9..9e63e5f08 100644 --- a/src/proc.c +++ b/src/proc.c @@ -153,11 +153,11 @@ mrb_proc_arity(mrb_state *mrb, mrb_value self) int ma, ra, pa, arity; if (MRB_PROC_CFUNC_P(p)) { - // TODO cfunc aspec not implemented yet + /* TODO cfunc aspec not implemented yet */ return mrb_fixnum_value(-1); } - // arity is depend on OP_ENTER + /* arity is depend on OP_ENTER */ if (GET_OPCODE(*iseq) != OP_ENTER) { return mrb_fixnum_value(0); } -- cgit v1.2.3