Remove reference to USE_RINCGC

This compile time flag was removed in https://github.com/ruby/ruby/pull/7313

This commit cleans up some related dead code.
This commit is contained in:
Matt Valentine-House 2023-06-27 09:21:03 +01:00
Родитель 8ddfc17720
Коммит 9178a99877
1 изменённых файлов: 0 добавлений и 12 удалений

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

@ -442,18 +442,6 @@ RBIMPL_SYMBOL_EXPORT_END()
#undef USE_RGENGC
#define USE_RGENGC 1
/**
* @private
*
* This is a compile-time flag to enable/disable incremental GC feature. It
* has to be set at the time ruby itself compiles. Makes no sense for 3rd
* parties. It is safe for them to set this though; that just doesn't change
* anything.
*/
#ifndef USE_RINCGC
# define USE_RINCGC 1
#endif
/**
* @deprecated This macro seems broken. Setting this to anything other than
* zero just doesn't compile. We need to KonMari.