Skip to content

Commit acb3708

Browse files
committed
Drop redundant #[allow(clippy::*)]
1 parent 85b9f87 commit acb3708

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

benches/specializations.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(unstable_name_collisions, clippy::incompatible_msrv)]
1+
#![allow(unstable_name_collisions)]
22

33
use criterion::black_box;
44
use criterion::BenchmarkId;

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![warn(missing_docs, clippy::default_numeric_fallback)]
1+
#![warn(missing_docs)]
22
#![crate_name = "itertools"]
33
#![cfg_attr(not(feature = "use_std"), no_std)]
44

tests/quick.rs

-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ where
253253
let mut it = get_it();
254254

255255
for _ in 0..(counts.len() - 1) {
256-
#[allow(clippy::manual_assert)]
257256
if it.next().is_none() {
258257
panic!("Iterator shouldn't be finished, may not be deterministic");
259258
}

0 commit comments

Comments
 (0)