summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2020-03-16 11:00:32 +0900
committerYusuke Endoh <mame@ruby-lang.org>2020-03-16 11:01:08 +0900
commitad10760b0580fdcac2e9fe9be4bd82515cc58484 (patch)
treef7a63b5ef89559eae57ef85af31ef66bb9eaf792
parent4ea83569469978c2b6b6bb7d858f7c3f512b40a0 (diff)
proc.c: Remove non-sense /* fall through */
-rw-r--r--proc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index 0b1be9c212..5ee65a0fee 100644
--- a/proc.c
+++ b/proc.c
@@ -1170,7 +1170,6 @@ rb_block_arity(void)
rb_proc_t *proc;
GetProcPtr(procval, proc);
return (proc->is_lambda ? min == max : max != UNLIMITED_ARGUMENTS) ? min : -min-1;
- /* fall through */
}
default: