about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMichael Wright <mikerite@lavabit.com>2019-04-05 05:59:46 +0200
committerMichael Wright <mikerite@lavabit.com>2019-04-05 05:59:46 +0200
commita9d002c8a53be53aab6c754b011fb699e2f51aa0 (patch)
tree42047f71906ae120ee36427353c6e44e7b10445e /src
parentecc5c0a57d21ed0b926fd1a8528fd25325bc7d0f (diff)
parent17e04ac751411a16d305aaf8d47a900675ad93f5 (diff)
downloadrust-a9d002c8a53be53aab6c754b011fb699e2f51aa0.tar.gz
rust-a9d002c8a53be53aab6c754b011fb699e2f51aa0.zip
Merge branch 'master' into clippy_dev_toolchain
Diffstat (limited to 'src')
-rw-r--r--src/driver.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver.rs b/src/driver.rs
index 01358f46dd7..834d11861c0 100644
--- a/src/driver.rs
+++ b/src/driver.rs
@@ -93,7 +93,7 @@ impl rustc_driver::Callbacks for ClippyCallbacks {
             ls.register_early_pass(Some(sess), true, false, pass);
         }
         for pass in late_lint_passes {
-            ls.register_late_pass(Some(sess), true, pass);
+            ls.register_late_pass(Some(sess), true, false, false, pass);
         }
 
         for (name, (to, deprecated_name)) in lint_groups {