diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 08:27:58 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 08:27:58 +0000 |
commit | 3e69e83a62be745e1ace41cb0293ec0692baaeb6 (patch) | |
tree | 08a2eaccc276bc216f2f0fbec60d28216f435091 /include/ruby/ruby.h | |
parent | 4f572663c8ef0dd4274bf935e3385c454e0ddaf5 (diff) |
* include/ruby/ruby.h (enum ruby_special_consts): ISO C forbids
comma at end of enumerator list
* include/ruby/ruby.h (enum ruby_value_type): ditto.
* eval_intern.h (enum): ditto.
* vm_core.h (enum rb_thread_status): ditto.
* parse.y (enum lex_state_e): ditto.
* parse.y (enum string_type): ditto.
* process.c (enum): ditto.
* ruby.c (enum dump_flag_bits): ditto.
* ruby.c (enum disable_flag_bits): ditto.
* compile.c (iseq_link_element): ditto
* debug.c (union): ditto.
* cont.c (enum context_type): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/ruby.h')
-rw-r--r-- | include/ruby/ruby.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 1c8e44e67b..fe10e4aef3 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -235,7 +235,7 @@ enum ruby_special_consts { RUBY_IMMEDIATE_MASK = 0x03, RUBY_FIXNUM_FLAG = 0x01, RUBY_SYMBOL_FLAG = 0x0e, - RUBY_SPECIAL_SHIFT = 8, + RUBY_SPECIAL_SHIFT = 8 }; #define Qfalse ((VALUE)RUBY_Qfalse) @@ -280,7 +280,7 @@ enum ruby_value_type { RUBY_T_NODE = 0x1c, RUBY_T_ICLASS = 0x1d, - RUBY_T_MASK = 0x1f, + RUBY_T_MASK = 0x1f }; #define T_NONE RUBY_T_NONE |