about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/mod.rs
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2024-04-23 11:23:20 +0300
committerklensy <klensy@users.noreply.github.com>2024-04-23 11:23:20 +0300
commit9bd175c8a206cabbca2818d9cf509939b95301a8 (patch)
tree09473f1bede1103036008918b7c6e1f6625848e6 /compiler/rustc_parse/src/parser/mod.rs
parenta77f76e26302e9a084fb321817675b1dfc1dcd63 (diff)
downloadrust-9bd175c8a206cabbca2818d9cf509939b95301a8.tar.gz
rust-9bd175c8a206cabbca2818d9cf509939b95301a8.zip
parser: remove ununsed(no reads) max_angle_bracket_count field
Diffstat (limited to 'compiler/rustc_parse/src/parser/mod.rs')
-rw-r--r--compiler/rustc_parse/src/parser/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_parse/src/parser/mod.rs b/compiler/rustc_parse/src/parser/mod.rs
index 4a996f89a9a..cd8a5600c73 100644
--- a/compiler/rustc_parse/src/parser/mod.rs
+++ b/compiler/rustc_parse/src/parser/mod.rs
@@ -162,7 +162,6 @@ pub struct Parser<'a> {
     ///
     /// See the comments in the `parse_path_segment` function for more details.
     unmatched_angle_bracket_count: u16,
-    max_angle_bracket_count: u16,
     angle_bracket_nesting: u16,
 
     last_unexpected_token_span: Option<Span>,
@@ -430,7 +429,6 @@ impl<'a> Parser<'a> {
             num_bump_calls: 0,
             break_last_token: false,
             unmatched_angle_bracket_count: 0,
-            max_angle_bracket_count: 0,
             angle_bracket_nesting: 0,
             last_unexpected_token_span: None,
             subparser_name,
@@ -778,7 +776,6 @@ impl<'a> Parser<'a> {
         if ate {
             // See doc comment for `unmatched_angle_bracket_count`.
             self.unmatched_angle_bracket_count += 1;
-            self.max_angle_bracket_count += 1;
             debug!("eat_lt: (increment) count={:?}", self.unmatched_angle_bracket_count);
         }
         ate