summaryrefslogtreecommitdiffhomepage
path: root/src/proc.c
diff options
context:
space:
mode:
authorTatsuhiko Kubo <[email protected]>2014-07-13 00:24:45 +0900
committerTatsuhiko Kubo <[email protected]>2014-07-13 00:24:45 +0900
commit5b5313ec97c6d24ebd4ea1d31ce2a44e25d587ee (patch)
treeba6b718b2492d2722df1401e16ea3075e62c2af9 /src/proc.c
parentee9d409eedff7988b464607bbbb98df3ca21b99a (diff)
downloadmruby-5b5313ec97c6d24ebd4ea1d31ce2a44e25d587ee.tar.gz
mruby-5b5313ec97c6d24ebd4ea1d31ce2a44e25d587ee.zip
use C style comments instead of C++ style comments
Diffstat (limited to 'src/proc.c')
-rw-r--r--src/proc.c4
1 files changed, 2 insertions, 2 deletions
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);
}