summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-06-15 16:41:30 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-06-15 16:41:30 -0700
commitc3aa1c4703ecb84228754ce37aa20188b1329858 (patch)
tree653cc240dff8d9a772f8860f6b159a9a68125c37 /src
parent13394d1651da42848949de3184a21bda685aba72 (diff)
parent26ef69d9abf363934bf44c6546d6036b758a6146 (diff)
downloadmruby-c3aa1c4703ecb84228754ce37aa20188b1329858.tar.gz
mruby-c3aa1c4703ecb84228754ce37aa20188b1329858.zip
Merge pull request #291 from junjis0203/remove_RNode_definition
Remove unused struct
Diffstat (limited to 'src')
-rw-r--r--src/node.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/node.h b/src/node.h
index 8ae0301ba..29edd6cc5 100644
--- a/src/node.h
+++ b/src/node.h
@@ -103,29 +103,3 @@ enum node_type {
NODE_ATTRASGN,
NODE_LAST
};
-
-typedef struct RNode {
- unsigned long flags;
- char *nd_file;
- union {
- struct RNode *node;
- mrb_sym id;
- mrb_value value;
- //mrb_value (*cfunc)((ARGS_ANY()));
- mrb_sym *tbl;
- } u1;
- union {
- struct RNode *node;
- mrb_sym id;
- long argc;
- mrb_value value;
- } u2;
- union {
- struct RNode *node;
- mrb_sym id;
- long state;
- struct global_entry *entry;
- long cnt;
- mrb_value value;
- } u3;
-} NODE;