[前][次][番号順一覧][スレッド一覧]

ruby-changes:65860

From: Peter <ko1@a...>
Date: Tue, 13 Apr 2021 22:38:11 +0900 (JST)
Subject: [ruby-changes:65860] 4eefb05725 (master): Add RSymbol struct back into RVALUE

https://git.ruby-lang.org/ruby.git/commit/?id=4eefb05725

From 4eefb057257b169c50715e7b38865421380f619b Mon Sep 17 00:00:00 2001
From: Peter Zhu <peter.zhu@s...>
Date: Mon, 12 Apr 2021 18:20:55 +0000
Subject: Add RSymbol struct back into RVALUE

Commit 0ca714fa1aa3fbe4fb60ae1e5b730e544dabc27b removed RSymbol from
RVALUE. This commit adds RSymbol back into RVALUE.
---
 gc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gc.c b/gc.c
index fce429c..e8c278f 100644
--- a/gc.c
+++ b/gc.c
@@ -583,6 +583,7 @@ typedef struct RVALUE { https://github.com/ruby/ruby/blob/trunk/gc.c#L583
 	struct RMatch  match;
 	struct RRational rational;
 	struct RComplex complex;
+        struct RSymbol symbol;
 	union {
 	    rb_cref_t cref;
 	    struct vm_svar svar;
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]