Skip to content

Commit 75677c4

Browse files
committed
Fix whitespace
1 parent 4d0a1e4 commit 75677c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc_macros/src/query.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ struct QueryModifiers {
215215

216216
/// Generate a dep node based on the dependencies of the query
217217
anon: bool,
218-
218+
219219
// Always evaluate the query, ignoring its depdendencies
220220
eval_always: bool,
221221
}
@@ -403,7 +403,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
403403
};
404404

405405
let mut attribute_stream = quote! {};
406-
406+
407407
for e in attributes.into_iter().intersperse(quote! {,}) {
408408
attribute_stream.extend(e);
409409
}
@@ -447,7 +447,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
447447
}
448448
});
449449
}
450-
450+
451451
add_query_description_impl(&query, modifiers, &mut query_description_stream);
452452
}
453453
let name = &group.name;

0 commit comments

Comments
 (0)