Co-authored-by: 卜部昌平 <shyouhei@ruby-lang.org>
This commit is contained in:
Koichi Sasada 2020-05-20 17:20:59 +09:00
Родитель 21991e6ca5
Коммит 4ac42874bc
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,13 @@
#endif
#if RUBY_DEBUG > 0 && defined(NDEBUG)
#warning NDEBUG is ignored because RUBY_DEBUG>0.
#if defined(_MSC_VER)
# pragma message("NDEBUG is ignored because RUBY_DEBUG>0.")
#elif defined(__GNUC__)
# pragma GCC warning "NDEBUG is ignored because RUBY_DEBUG>0."
#else
# error NDEBUG is ignored because RUBY_DEBUG>0.
#endif
#endif
/*