File tree Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ use crate::ty::TyCtxt;
1313
1414macro_rules! define_dep_nodes {
1515 (
16- $( $( #[ $attr: meta] ) *
17- [ $( $modifiers: tt) * ] fn $variant: ident( $( $K: tt) * ) -> $V: ty, ) * ) => {
16+ $(
17+ $( #[ $attr: meta] ) *
18+ [ $( $modifiers: tt) * ] fn $variant: ident( $( $K: tt) * ) -> $V: ty,
19+ ) *
20+ ) => {
1821
1922 #[ macro_export]
2023 macro_rules! make_dep_kind_array {
Original file line number Diff line number Diff line change @@ -313,8 +313,11 @@ macro_rules! separate_provide_extern_default {
313313
314314macro_rules! define_callbacks {
315315 (
316- $( $( #[ $attr: meta] ) *
317- [ $( $modifiers: tt) * ] fn $name: ident( $( $K: tt) * ) -> $V: ty, ) * ) => {
316+ $(
317+ $( #[ $attr: meta] ) *
318+ [ $( $modifiers: tt) * ] fn $name: ident( $( $K: tt) * ) -> $V: ty,
319+ ) *
320+ ) => {
318321
319322 #[ allow( unused_lifetimes) ]
320323 pub mod queries {
Original file line number Diff line number Diff line change @@ -578,8 +578,11 @@ where
578578// invoked by `rustc_with_all_queries`.
579579macro_rules! define_queries {
580580 (
581- $( $( #[ $attr: meta] ) *
582- [ $( $modifiers: tt) * ] fn $name: ident( $( $K: tt) * ) -> $V: ty, ) * ) => {
581+ $(
582+ $( #[ $attr: meta] ) *
583+ [ $( $modifiers: tt) * ] fn $name: ident( $( $K: tt) * ) -> $V: ty,
584+ ) *
585+ ) => {
583586
584587 pub ( crate ) mod query_impl { $( pub ( crate ) mod $name {
585588 use super :: super :: * ;
You can’t perform that action at this time.
0 commit comments