diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2021-07-08 12:59:16 -0500 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2021-07-09 09:10:45 -0500 |
| commit | 17ebba70d00e94b5136171d3f26d6a0369e7b83c (patch) | |
| tree | 50336e1f485e19acb79cb8743a60eabd03c804a6 | |
| parent | d6b0d0bf9746a441e5082415e7f929af2874b65a (diff) | |
| download | rust-17ebba70d00e94b5136171d3f26d6a0369e7b83c.tar.gz rust-17ebba70d00e94b5136171d3f26d6a0369e7b83c.zip | |
clippy: allow default_hash_types on bootstrap
| -rw-r--r-- | src/tools/clippy/clippy_lints/src/implicit_hasher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/clippy_lints/src/implicit_hasher.rs b/src/tools/clippy/clippy_lints/src/implicit_hasher.rs index 03fe0d16d48..9a040ca572a 100644 --- a/src/tools/clippy/clippy_lints/src/implicit_hasher.rs +++ b/src/tools/clippy/clippy_lints/src/implicit_hasher.rs @@ -1,4 +1,4 @@ -#![allow(rustc::default_hash_types)] +#![cfg_attr(bootstrap, allow(rustc::default_hash_types))] use std::borrow::Cow; use std::collections::BTreeMap; |
