diff options
| author | bors <bors@rust-lang.org> | 2021-11-09 05:33:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-11-09 05:33:16 +0000 |
| commit | 60952bc3da442cf2ea11dcc9c80a461a659bbcd7 (patch) | |
| tree | 5c0793aef63ff65a56795a5852e448a64e054137 /compiler/rustc_span/src | |
| parent | c57704f3eb4319cc93513c232e9c434a73af46d2 (diff) | |
| parent | 8e21f3a4d7a8a5a90ee21f00aed101340221a8b6 (diff) | |
| download | rust-60952bc3da442cf2ea11dcc9c80a461a659bbcd7.tar.gz rust-60952bc3da442cf2ea11dcc9c80a461a659bbcd7.zip | |
Auto merge of #90485 - camsteffen:fmt-args-less-bind, r=m-ou-se
Don't destructure args tuple in format_args! This allows Clippy to parse the HIR more simply since `arg0` is changed to `_args.0`. (cc rust-lang/rust-clippy#7843). From rustc's perspective, I think this is something between a lateral move and a tiny improvement since there are fewer bindings. r? `@m-ou-se`
Diffstat (limited to 'compiler/rustc_span/src')
| -rw-r--r-- | compiler/rustc_span/src/symbol.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_span/src/symbol.rs b/compiler/rustc_span/src/symbol.rs index b9730a1e420..99fa9f00094 100644 --- a/compiler/rustc_span/src/symbol.rs +++ b/compiler/rustc_span/src/symbol.rs @@ -271,6 +271,7 @@ symbols! { __S, __next, __try_var, + _args, _d, _e, _task_context, |
