From dce274024e62a0dc20c639eaa634bf5f01008e78 Mon Sep 17 00:00:00 2001 From: Cameron Steffen Date: Thu, 8 Jul 2021 12:59:16 -0500 Subject: [PATCH] clippy: allow default_hash_types on bootstrap --- clippy_lints/src/implicit_hasher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/implicit_hasher.rs b/clippy_lints/src/implicit_hasher.rs index 03fe0d16d480..9a040ca572af 100644 --- a/clippy_lints/src/implicit_hasher.rs +++ b/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;