diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-11 02:57:02 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-11 02:57:02 +0000 |
commit | 9b29e5f7e1855f5381227363970e4ff21f3e4ae6 () | |
tree | 93c34c3e1b87149444f938e68242db355d4d143b /vm_backtrace.c | |
parent | 9ea35ccf306cda49f3ec1ab02ae1570f68e02765 (diff) |
* compile.c (iseq_set_sequence): nonstatic initializer of an
aggregate type is a C99ism. * compile.c (enum compile_array_type_t): comma at the end of enum list is a C99ism. * vm_backtrace.c (enum LOCATION_TYPE): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | vm_backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ typedef struct rb_backtrace_location_struct { LOCATION_TYPE_ISEQ = 1, LOCATION_TYPE_ISEQ_CALCED, LOCATION_TYPE_CFUNC, - LOCATION_TYPE_IFUNC, } type; union { |