diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2025-04-29 17:31:05 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2025-04-29 20:48:51 +1000 |
| commit | ed2f4b6d2dd0bc5023223cf4a61c14b2b811f9cd (patch) | |
| tree | b568828e083eb2b9316be5c8927e5db689854b66 /compiler/rustc_query_impl | |
| parent | 64bcf3b9f66e9bc070e2d1b1ee7e643ba098f880 (diff) | |
| download | rust-ed2f4b6d2dd0bc5023223cf4a61c14b2b811f9cd.tar.gz rust-ed2f4b6d2dd0bc5023223cf4a61c14b2b811f9cd.zip | |
Reformat parameters to macros used by with-all-queries
Diffstat (limited to 'compiler/rustc_query_impl')
| -rw-r--r-- | compiler/rustc_query_impl/src/plumbing.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/compiler/rustc_query_impl/src/plumbing.rs b/compiler/rustc_query_impl/src/plumbing.rs index 0a4a9c44eb9..d11fa8bad9b 100644 --- a/compiler/rustc_query_impl/src/plumbing.rs +++ b/compiler/rustc_query_impl/src/plumbing.rs @@ -578,8 +578,11 @@ where // invoked by `rustc_with_all_queries`. macro_rules! define_queries { ( - $($(#[$attr:meta])* - [$($modifiers:tt)*] fn $name:ident($($K:tt)*) -> $V:ty,)*) => { + $( + $(#[$attr:meta])* + [$($modifiers:tt)*] fn $name:ident($($K:tt)*) -> $V:ty, + )* + ) => { pub(crate) mod query_impl { $(pub(crate) mod $name { use super::super::*; |
