From b424ef9ebb7dda5fd934f09dbae42b81589b9d64 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Fri, 13 Dec 2019 19:47:54 +0300 Subject: [PATCH] Enable clippy::unreadable_literal error --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 56fe79109..f1347de15 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ clippy::cognitive_complexity, clippy::too_many_arguments )] -#![allow(clippy::unreadable_literal, clippy::match_bool)] +#![allow(clippy::match_bool)] #![feature(ptr_wrapping_offset_from)] #![feature(drain_filter)]