summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-31 09:58:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-31 09:58:01 +0000
commit6016da7dab6b1168ffd332d2285e367020aee5ee (patch)
tree03623db7dc9ea51bdc880549cdfa69e79c70cd6a /internal.h
parent5b0ccdbc679158cc944907a8648bba9ac3277e40 (diff)
symbol.h: move macros
* symbol.h (RSYMBOL): move macros for Symbol from internal.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal.h b/internal.h
index 4a5134d20a..1cea556a2d 100644
--- a/internal.h
+++ b/internal.h
@@ -418,10 +418,6 @@ struct RSymbol {
ID type;
};
-#define RSYMBOL(obj) (R_CAST(RSymbol)(obj))
-#define SYMBOL_PINNED FL_USER1
-#define SYMBOL_PINNED_P(sym) FL_TEST((sym), SYMBOL_PINNED)
-
struct RFloat {
struct RBasic basic;
double float_value;