1
Fork 0

Fix whitespace

This commit is contained in:
John Kåre Alsaker 2019-03-20 18:00:08 +01:00
parent 4d0a1e418c
commit 75677c45c3

View file

@ -215,7 +215,7 @@ struct QueryModifiers {
/// Generate a dep node based on the dependencies of the query /// Generate a dep node based on the dependencies of the query
anon: bool, anon: bool,
// Always evaluate the query, ignoring its depdendencies // Always evaluate the query, ignoring its depdendencies
eval_always: bool, eval_always: bool,
} }
@ -403,7 +403,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
}; };
let mut attribute_stream = quote! {}; let mut attribute_stream = quote! {};
for e in attributes.into_iter().intersperse(quote! {,}) { for e in attributes.into_iter().intersperse(quote! {,}) {
attribute_stream.extend(e); attribute_stream.extend(e);
} }
@ -447,7 +447,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
} }
}); });
} }
add_query_description_impl(&query, modifiers, &mut query_description_stream); add_query_description_impl(&query, modifiers, &mut query_description_stream);
} }
let name = &group.name; let name = &group.name;