diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-15 23:04:50 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-15 23:04:50 +0000 |
commit | 698fe540b9ac94b2cf7e7261a47d1f5b7d8d09d0 (patch) | |
tree | f1a0cc131e0fa8feed33d899134982d8e4c60026 /node.h | |
parent | 202cb99c86387f351f38266aff95fc1563a5ede7 (diff) | |
download | ruby-698fe540b9ac94b2cf7e7261a47d1f5b7d8d09d0.tar.gz |
* node.h (RNode): match the type of flags to RBasic, and renamed
nd_file as nd_reserved.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30224 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r-- | node.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -233,8 +233,8 @@ enum node_type { }; typedef struct RNode { - unsigned long flags; - char *nd_file; + VALUE flags; + VALUE nd_reserved; /* ex nd_file */ union { struct RNode *node; ID id; |