Skip to content

Commit

Permalink
Remove no longer triggered clippy suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 12, 2021
1 parent 52466ab commit fcdb43e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/lib.rs
Expand Up @@ -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
)]

Expand Down
2 changes: 1 addition & 1 deletion 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))*) => {
Expand Down

0 comments on commit fcdb43e

Please sign in to comment.