Don't pin `val` passed in to `rb_define_const`.

The caller should be responsible for holding a pinned reference (if they
need that)
This commit is contained in:
Aaron Patterson 2021-02-01 10:42:13 -08:00 коммит произвёл Aaron Patterson
Родитель 71c746379d
Коммит 1be84e53d7
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -3154,7 +3154,6 @@ rb_define_const(VALUE klass, const char *name, VALUE val)
if (!rb_is_const_id(id)) {
rb_warn("rb_define_const: invalid name `%s' for constant", name);
}
rb_gc_register_mark_object(val);
rb_const_set(klass, id, val);
}