diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-07-13 08:12:14 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-07-13 08:12:14 +0900 |
| commit | 23c811bda6f05bcf5792ac6ba8b12c51fb75d076 (patch) | |
| tree | ba6b718b2492d2722df1401e16ea3075e62c2af9 /src/proc.c | |
| parent | ee9d409eedff7988b464607bbbb98df3ca21b99a (diff) | |
| parent | 5b5313ec97c6d24ebd4ea1d31ce2a44e25d587ee (diff) | |
| download | mruby-23c811bda6f05bcf5792ac6ba8b12c51fb75d076.tar.gz mruby-23c811bda6f05bcf5792ac6ba8b12c51fb75d076.zip | |
Merge pull request #2465 from cubicdaiya/feature/comment_style
use C style comments instead of C++ style comments
Diffstat (limited to 'src/proc.c')
| -rw-r--r-- | src/proc.c | 4 |
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); } |
