aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2019-07-15 10:19:25 +0900
committerKoichi Sasada <ko1@atdot.net>2019-07-15 10:21:41 +0900
commitf6f09cbc76c3e47aec23898e024ff5bb5f061bc4 (patch)
treeceaf8a3203b0c2addbb7958d29cbad8ec17ef00f /array.c
parent0af897ab59dfa3d06724f898f17bbf8a1970abd1 (diff)
downloadruby-f6f09cbc76c3e47aec23898e024ff5bb5f061bc4.tar.gz
introduce RUBY_ASSERT_ALWAYS(expr).
RUBY_ASSERT_ALWAYS(expr) ignores NDEBUG (we cannot remove this assertion).
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 31f078610d..c693b00755 100644
--- a/array.c
+++ b/array.c
@@ -1125,7 +1125,7 @@ ary_take_first_or_last(int argc, const VALUE *argv, VALUE ary, enum ary_take_pos
/* the case optional argument is omitted should be handled in
* callers of this function. if another arity case is added,
* this arity check needs to rewrite. */
- RUBY_ASSERT_WHEN(TRUE, argc == 1);
+ RUBY_ASSERT_ALWAYS(argc == 1);
n = NUM2LONG(argv[0]);
len = RARRAY_LEN(ary);