From 44e914599b1d6a2ab43fc32a960fa0a5e9b0b028 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 3 Mar 2024 23:48:49 +0100 Subject: [PATCH] types: fix new clippy lint --- crates/types/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/types/src/lib.rs b/crates/types/src/lib.rs index e219a97..b4f12c2 100644 --- a/crates/types/src/lib.rs +++ b/crates/types/src/lib.rs @@ -47,8 +47,7 @@ macro_rules! coord_type { /// Returns an iterator over all possible values of the type #[inline] - pub fn iter() -> impl Iterator> - + DoubleEndedIterator + pub fn iter() -> impl DoubleEndedIterator> + ExactSizeIterator + FusedIterator + Clone