parse.y: remove redefined typedef

Clang told me that this is C11 feature.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2017-12-06 01:41:05 +00:00
parent f7899d3c80
commit b7c17ad14d

View File

@ -766,7 +766,7 @@ typedef struct rb_strterm_literal_struct {
} u3;
} rb_strterm_literal_t;
typedef struct rb_strterm_heredoc_struct {
struct rb_strterm_heredoc_struct {
SIGNED_VALUE sourceline;
VALUE term; /* `"END"` of `<<"END"` */
VALUE lastline; /* the string of line that contains `<<"END"` */
@ -774,7 +774,7 @@ typedef struct rb_strterm_heredoc_struct {
VALUE dummy;
long lastidx; /* the column of `<<"END"` */
} u3;
} rb_strterm_heredoc_t;
};
#define STRTERM_HEREDOC IMEMO_FL_USER0