Merge pull request #291 from junjis0203/remove_RNode_definition

Remove unused struct
This commit is contained in:
Yukihiro "Matz" Matsumoto
2012-06-15 16:41:30 -07:00
-26
View File
@@ -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;