summaryrefslogtreecommitdiffhomepage
path: root/src/node.h
diff options
context:
space:
mode:
authorPaolo Bosetti <[email protected]>2012-08-06 15:02:03 +0200
committerPaolo Bosetti <[email protected]>2012-08-06 15:02:56 +0200
commitaa0d2f91447c49363059f2e95cb9023f65a6fbef (patch)
tree2cfa325956e62648f2161564adfdf6dddc45b737 /src/node.h
parentfd097b8aff7b91bd105fc1daec5a4050a947b763 (diff)
parent193c98ae540d43d082795fd77ea81a4f6f7fd0f6 (diff)
downloadmruby-aa0d2f91447c49363059f2e95cb9023f65a6fbef.tar.gz
mruby-aa0d2f91447c49363059f2e95cb9023f65a6fbef.zip
Updated Xcode project build settings in conformity with 10.8/Xcode 4.4
Diffstat (limited to 'src/node.h')
-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;