diff options
| author | flip1995 <9744647+flip1995@users.noreply.github.com> | 2018-08-28 14:16:31 +0200 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-08-29 11:08:29 -0700 |
| commit | daa4f0ad34f79a91a6ae27fec6d56dd95e6feac2 (patch) | |
| tree | 5b6929385a57f9c53e7ad37b110a8860da6813b7 /src | |
| parent | d1f2f0c34cd6062bc43e88f11b06369e08af4af6 (diff) | |
| download | rust-daa4f0ad34f79a91a6ae27fec6d56dd95e6feac2.tar.gz rust-daa4f0ad34f79a91a6ae27fec6d56dd95e6feac2.zip | |
Implement backwards compatibility changes introduced by rust-lang/rust#53762
Diffstat (limited to 'src')
| -rw-r--r-- | src/driver.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver.rs b/src/driver.rs index 6885c2aed2b..26ff846177b 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -119,8 +119,8 @@ pub fn main() { ls.register_late_pass(Some(sess), true, pass); } - for (name, to) in lint_groups { - ls.register_group(Some(sess), true, name, to); + for (name, (to, deprecated_name)) in lint_groups { + ls.register_group(Some(sess), true, name, deprecated_name, to); } clippy_lints::register_pre_expansion_lints(sess, &mut ls, &conf); |
