summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-06 13:36:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-06 13:36:45 +0000
commit0ca714fa1aa3fbe4fb60ae1e5b730e544dabc27b (patch)
treee67a09f72bf71bc5dbb677e455fbdd039e0a8996 /internal.h
parent8474ebad8a4abb4c4b5ae7ecc5f5c7648763d2d3 (diff)
symbol.h: move struct RSymbol
* symbol.h (struct RSymbol): move from internal.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/internal.h b/internal.h
index 1a9be71c31..a4d56b9984 100644
--- a/internal.h
+++ b/internal.h
@@ -420,12 +420,6 @@ struct RRational {
#define RRATIONAL(obj) (R_CAST(RRational)(obj))
-struct RSymbol {
- struct RBasic basic;
- VALUE fstr;
- ID type;
-};
-
struct RFloat {
struct RBasic basic;
double float_value;