1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add RSymbol struct back into RVALUE

Commit 0ca714fa1a removed RSymbol from
RVALUE. This commit adds RSymbol back into RVALUE.
This commit is contained in:
Peter Zhu 2021-04-12 18:20:55 +00:00 committed by Peter Zhu
parent 393923b50d
commit 4eefb05725
Notes: git 2021-04-13 22:38:18 +09:00

1
gc.c
View file

@ -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;