[ruby/bigdecimal] Add fallback definition of MAYBE_UNUSED

https://github.com/ruby/bigdecimal/commit/b2123faa52
This commit is contained in:
Kenta Murata 2022-11-15 15:58:56 +09:00 коммит произвёл git
Родитель c925a2ee91
Коммит c75de1e330
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -107,6 +107,10 @@ static struct {
# define RB_OBJ_STRING(obj) StringValueCStr(obj)
#endif
#ifndef MAYBE_UNUSED
# define MAYBE_UNUSED(x) x
#endif
#define BIGDECIMAL_POSITIVE_P(bd) ((bd)->sign > 0)
#define BIGDECIMAL_NEGATIVE_P(bd) ((bd)->sign < 0)