diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-05-12 10:21:05 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-05-12 10:23:33 +0900 |
| commit | 237bee9d40cbc9d1067694f84793985cc4621cbc (patch) | |
| tree | 3abf3891fa05f989677fdb1d85f6d2f5f01ac0a1 /include | |
| parent | 3fcf7f0271a3f29f91b6bda60e518f0fcb026eda (diff) | |
Removed extra stringization
Argument of RUBY_ASSERT_FAIL is already stringized message, so no
more extra stringization should be applied.
Diffstat (limited to 'include')
| -rw-r--r-- | include/ruby/assert.h | 4 | ||||
| -rw-r--r-- | include/ruby/internal/globals.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/ruby/assert.h b/include/ruby/assert.h index 7e59da6662..ac9b9c8cc3 100644 --- a/include/ruby/assert.h +++ b/include/ruby/assert.h @@ -62,8 +62,8 @@ RBIMPL_SYMBOL_EXPORT_END() # define RBIMPL_ASSERT_FUNC RBIMPL_CAST((const char *)0) #endif -#define RUBY_ASSERT_FAIL(expr) \ - rb_assert_failure(__FILE__, __LINE__, RBIMPL_ASSERT_FUNC, #expr) +#define RUBY_ASSERT_FAIL(mesg) \ + rb_assert_failure(__FILE__, __LINE__, RBIMPL_ASSERT_FUNC, mesg) #define RUBY_ASSERT_MESG(expr, mesg) \ (RB_LIKELY(expr) ? RBIMPL_ASSERT_NOTHING : RUBY_ASSERT_FAIL(mesg)) diff --git a/include/ruby/internal/globals.h b/include/ruby/internal/globals.h index 8269591690..e0bef2db24 100644 --- a/include/ruby/internal/globals.h +++ b/include/ruby/internal/globals.h @@ -148,7 +148,7 @@ rb_class_of(VALUE obj) #if RUBY_NDEBUG RBIMPL_UNREACHABLE_RETURN(Qfalse); #else - RUBY_ASSERT_FAIL(rb_class_of); + RUBY_ASSERT_FAIL("unexpected type"); #endif } |
