summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-06 13:19:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-06 13:19:31 +0000
commitfd8b2547054fffe8dd01631b50e917df47c5b637 (patch)
tree16ff4ad037a8596fa2cda34aa908f211b8aa4162 /node.h
parent199f814f32e97b2fed528801c0ad2c84c1e5f8a6 (diff)
node.h: remove NODE_PRIVATE_RECV
* compile.c (private_recv_p): check by node type, instead of a magic number. * node.h (NODE_PRIVATE_RECV), parse.y (attrset_gen): remove git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/node.h b/node.h
index 2c6cd91e2b..9ee07048c2 100644
--- a/node.h
+++ b/node.h
@@ -465,8 +465,6 @@ typedef struct RNode {
#define NEW_PRELUDE(p,b) NEW_NODE(NODE_PRELUDE,p,b,0)
#define NEW_MEMO(a,b,c) NEW_NODE(NODE_MEMO,a,b,c)
-#define NODE_PRIVATE_RECV ((NODE *)1)
-
#define roomof(x, y) ((sizeof(x) + sizeof(y) - 1) / sizeof(y))
#define MEMO_FOR(type, value) ((type *)RARRAY_PTR(value))
#define NEW_MEMO_FOR(type, value) \