summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-05 03:52:22 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-05 03:52:22 +0000
commitcb7d9fe95f5a521ea5db279e0c1a956a98e4a5cc (patch)
tree5bcba2547e2b9de78ae2e25755723f9c0b2b0755 /node.h
parent6bac2765a7f8098d40bd369568d6cf308976c8d4 (diff)
Revert "Introduce rb_code_range_t and replace YYLTYPE with it"
r60655 changed the usage of bison by defining a customized YYLTYPE, which seemed to cause a random stall at rb_thread_terminate_all. Kazuki Tsujimoto investigated the issue and pointed out the commit that caused it. Thanks! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/node.h b/node.h
index b0f8433aa5..59d6d7f204 100644
--- a/node.h
+++ b/node.h
@@ -227,11 +227,6 @@ typedef struct rb_code_location_struct {
int column;
} rb_code_location_t;
-typedef struct rb_code_range_struct {
- rb_code_location_t first_loc;
- rb_code_location_t last_loc;
-} rb_code_range_t;
-
typedef struct RNode {
VALUE flags;
union {