summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorPeter Zhu <peter.zhu@shopify.com>2021-04-12 18:20:55 +0000
committerPeter Zhu <peter@peterzhu.ca>2021-04-13 09:37:50 -0400
commit4eefb057257b169c50715e7b38865421380f619b (patch)
tree90128ff609a1c20b80b463755509a0e15efc052e /gc.c
parent393923b50d472468c078c08a4b6f90e7186deb4a (diff)
Add RSymbol struct back into RVALUE
Commit 0ca714fa1aa3fbe4fb60ae1e5b730e544dabc27b removed RSymbol from RVALUE. This commit adds RSymbol back into RVALUE.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4378
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index fce429c7db..e8c278fc7a 100644
--- a/gc.c
+++ b/gc.c
@@ -583,6 +583,7 @@ typedef struct RVALUE {
struct RMatch match;
struct RRational rational;
struct RComplex complex;
+ struct RSymbol symbol;
union {
rb_cref_t cref;
struct vm_svar svar;