summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-07-14 17:45:52 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-07-14 17:45:52 +0900
commit73904abb951ad60483124fa620b5561015906a79 (patch)
treed28218890f83197db5fd9cb2c0ea0df9ebb187c6
parent32f013514460574eed03aa678f87ed7ca9600872 (diff)
* expand tabs.
-rw-r--r--include/ruby/assert.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ruby/assert.h b/include/ruby/assert.h
index 5ef866ac9e..aef36b8d48 100644
--- a/include/ruby/assert.h
+++ b/include/ruby/assert.h
@@ -21,9 +21,9 @@ NORETURN(void rb_assert_failure(const char *, int, const char *, const char *));
#ifdef HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P
# define RUBY_ASSERT_MESG_WHEN(cond, expr, mesg) \
__builtin_choose_expr( \
- __builtin_constant_p(cond), \
- __builtin_choose_expr(cond, RUBY_ASSERT_MESG(expr, mesg), (void)0), \
- RUBY_ASSERT_MESG(!(cond) || (expr), mesg))
+ __builtin_constant_p(cond), \
+ __builtin_choose_expr(cond, RUBY_ASSERT_MESG(expr, mesg), (void)0), \
+ RUBY_ASSERT_MESG(!(cond) || (expr), mesg))
#else
# define RUBY_ASSERT_MESG_WHEN(cond, expr, mesg) \
RUBY_ASSERT_MESG(!(cond) || (expr), mesg)