From 766c902d8c0650e7c72870aeb6168024added33c Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 1 Aug 2017 11:37:51 -0600 Subject: [PATCH] Allow `unreadable_literal` lint. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 35e9a63..62abed9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,6 +9,7 @@ #![cfg_attr(feature = "clippy", plugin(clippy))] #![cfg_attr(feature = "clippy", allow(inline_always))] #![cfg_attr(feature = "clippy", allow(too_many_arguments))] +#![cfg_attr(feature = "clippy", allow(unreadable_literal))] // The compiler provides `test` (on nightly) for benchmarking tools, but // it's hidden behind a feature flag. Enable it if we're testing.