about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2022-02-23 08:06:22 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2022-02-25 08:00:52 -0500
commit307966fbb2742d2542a62d9dd869d10086b56f01 (patch)
treee3a264832c0b6e2f6b862bdd0ce55f38b3a63819
parent87355df6d4db920a5a80bd6ccd4d467feea9df5a (diff)
downloadrust-307966fbb2742d2542a62d9dd869d10086b56f01.tar.gz
rust-307966fbb2742d2542a62d9dd869d10086b56f01.zip
Switch bootstrap cfgs
-rw-r--r--clippy_lints/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/lib.rs b/clippy_lints/src/lib.rs
index 5c45012ef06..85256ff0e99 100644
--- a/clippy_lints/src/lib.rs
+++ b/clippy_lints/src/lib.rs
@@ -18,7 +18,7 @@
 // warn on rustc internal lints
 #![warn(rustc::internal)]
 // Disable this rustc lint for now, as it was also done in rustc
-#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
+#![allow(rustc::potential_query_instability)]
 
 // FIXME: switch to something more ergonomic here, once available.
 // (Currently there is no way to opt into sysroot crates without `extern crate`.)