From 4bcc52ef256b4e25273024dda6f2fd6be0ad5577 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Wed, 10 Jan 2018 16:04:29 +0100 Subject: [PATCH] Reenable clippy lint that no longer gives false positives --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9ac7a85..623a248 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -71,7 +71,7 @@ //! [`Max`]: ./struct.Max.html //! [`concatenate`]: ./macro.concatenate.html -#![cfg_attr(feature = "cargo-clippy", allow(float_cmp, map_clone))] +#![cfg_attr(feature = "cargo-clippy", allow(float_cmp))] #![no_std]