Skip to content

Commit 8caa109

Browse files
CoAlloc: bless
1 parent 319b888 commit 8caa109

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

compiler/rustc_parse/src/parser/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ pub struct Parser<'a> {
168168
// This type is used a lot, e.g. it's cloned when matching many declarative macro rules with nonterminals. Make sure
169169
// it doesn't unintentionally get bigger.
170170
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
171-
rustc_data_structures::static_assert_size!(Parser<'_>, 312 + 4 * mem::size_of::<GlobalCoAllocMeta>());
171+
rustc_data_structures::static_assert_size!(
172+
Parser<'_>,
173+
312 + 4 * mem::size_of::<GlobalCoAllocMeta>()
174+
);
172175

173176
/// Stores span information about a closure.
174177
#[derive(Clone)]

0 commit comments

Comments
 (0)