summaryrefslogtreecommitdiff
path: root/internal/hash.h
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2023-06-08 10:42:59 -0400
committerPeter Zhu <[email protected]>2023-06-08 10:42:59 -0400
commit441302be1add6f10a85ccbde551a0fb567c65a15 (patch)
treeaae635592582cb6e221c4d05660ac7e112cc64fb /internal/hash.h
parent41496305663911dda2f0be6f5cb11eea448f10d5 (diff)
Remove RHASH_TRANSIENT_FLAG
Hashes are no longer allocated on the transient heap.
Diffstat (limited to 'internal/hash.h')
-rw-r--r--internal/hash.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/hash.h b/internal/hash.h
index 3874abeaa5..c0baaa9dc9 100644
--- a/internal/hash.h
+++ b/internal/hash.h
@@ -28,10 +28,6 @@ enum ruby_rhash_flags {
RHASH_AR_TABLE_BOUND_MASK = (FL_USER8|FL_USER9|FL_USER10|FL_USER11), /* FL 8..11 */
RHASH_AR_TABLE_BOUND_SHIFT = (FL_USHIFT+8),
-#if USE_TRANSIENT_HEAP
- RHASH_TRANSIENT_FLAG = FL_USER12, /* FL 12 */
-#endif
-
// we can not put it in "enum" because it can exceed "int" range.
#define RHASH_LEV_MASK (FL_USER13 | FL_USER14 | FL_USER15 | /* FL 13..19 */ \
FL_USER16 | FL_USER17 | FL_USER18 | FL_USER19)