Skip to content

Commit 812ddd2

Browse files
committed
fix parser size
1 parent b3c31d5 commit 812ddd2

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_parse/src/parser

1 file changed

+1
-1
lines changed

compiler/rustc_parse/src/parser/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ pub struct Parser<'a> {
162162
// This type is used a lot, e.g. it's cloned when matching many declarative macro rules with nonterminals. Make sure
163163
// it doesn't unintentionally get bigger.
164164
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
165-
rustc_data_structures::static_assert_size!(Parser<'_>, 320);
165+
rustc_data_structures::static_assert_size!(Parser<'_>, 272);
166166

167167
/// Stores span information about a closure.
168168
#[derive(Clone)]

0 commit comments

Comments
 (0)