diff options
author | Matt Valentine-House <[email protected]> | 2023-06-27 09:21:03 +0100 |
---|---|---|
committer | Matt Valentine-House <[email protected]> | 2023-07-04 14:14:34 +0100 |
commit | 9178a9987709efd74829462380e623e86a8de502 (patch) | |
tree | 7c2e14fba7c68f67edec1e5d19d37c84f1ce7070 | |
parent | 8ddfc177205d0b839cdce41435128dfcde2a1202 (diff) |
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.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7982
-rw-r--r-- | include/ruby/internal/gc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/ruby/internal/gc.h b/include/ruby/internal/gc.h index 205830954e..2a5180671c 100644 --- a/include/ruby/internal/gc.h +++ b/include/ruby/internal/gc.h @@ -443,18 +443,6 @@ RBIMPL_SYMBOL_EXPORT_END() #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. */ |