summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 2c0babcb8b..3469461527 100644
--- a/parse.y
+++ b/parse.y
@@ -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