From fcdb43ec939ac62d3fd2131677ea4bdf1af4248c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 12 Dec 2021 12:01:52 -0800 Subject: [PATCH] Remove no longer triggered clippy suppressions --- src/lib.rs | 3 --- tests/test.rs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index af9cf28..38d9db2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,10 +35,7 @@ #![allow( clippy::cast_lossless, clippy::cast_possible_truncation, - clippy::expl_impl_clone_on_copy, - clippy::missing_errors_doc, clippy::must_use_candidate, - clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7768 clippy::unreadable_literal )] diff --git a/tests/test.rs b/tests/test.rs index 43250ba..1d7e8cb 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,5 +1,5 @@ #![allow(non_snake_case)] -#![allow(clippy::cast_lossless, clippy::unseparated_literal_suffix)] +#![allow(clippy::cast_lossless)] macro_rules! test { ($($name:ident($value:expr, $expected:expr))*) => {