aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 131ffb8246..6def78a105 100644
--- a/gc.c
+++ b/gc.c
@@ -559,6 +559,12 @@ typedef struct gc_profile_record {
#endif
} gc_profile_record;
+struct RMoved {
+ VALUE flags;
+ VALUE destination;
+ VALUE next;
+};
+
#if defined(_MSC_VER) || defined(__CYGWIN__)
#pragma pack(push, 1) /* magic for reducing sizeof(RVALUE): 24 -> 20 */
#endif