diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2022-02-23 08:06:22 -0500 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2022-02-25 08:00:52 -0500 |
| commit | 307966fbb2742d2542a62d9dd869d10086b56f01 (patch) | |
| tree | e3a264832c0b6e2f6b862bdd0ce55f38b3a63819 | |
| parent | 87355df6d4db920a5a80bd6ccd4d467feea9df5a (diff) | |
| download | rust-307966fbb2742d2542a62d9dd869d10086b56f01.tar.gz rust-307966fbb2742d2542a62d9dd869d10086b56f01.zip | |
Switch bootstrap cfgs
| -rw-r--r-- | clippy_lints/src/lib.rs | 2 |
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`.) |
