We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319b888 commit 8caa109Copy full SHA for 8caa109
compiler/rustc_parse/src/parser/mod.rs
@@ -168,7 +168,10 @@ pub struct Parser<'a> {
168
// This type is used a lot, e.g. it's cloned when matching many declarative macro rules with nonterminals. Make sure
169
// it doesn't unintentionally get bigger.
170
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
171
-rustc_data_structures::static_assert_size!(Parser<'_>, 312 + 4 * mem::size_of::<GlobalCoAllocMeta>());
+rustc_data_structures::static_assert_size!(
172
+ Parser<'_>,
173
+ 312 + 4 * mem::size_of::<GlobalCoAllocMeta>()
174
+);
175
176
/// Stores span information about a closure.
177
#[derive(Clone)]
0 commit comments