From fb5133cc9cc1c3cf3279921547b40f5373e6fde3 Mon Sep 17 00:00:00 2001 From: dbr Date: Sun, 5 May 2024 12:09:24 +0930 Subject: [PATCH] Fix clippy yelling --- imgui/src/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/src/io.rs b/imgui/src/io.rs index cc0133e..cf30d89 100644 --- a/imgui/src/io.rs +++ b/imgui/src/io.rs @@ -423,7 +423,7 @@ impl Io { /// `RandomAccessIterator`, or we'd use that). pub fn input_queue_characters( &self, - ) -> impl Iterator + DoubleEndedIterator + ExactSizeIterator + Clone + '_ { + ) -> impl DoubleEndedIterator + ExactSizeIterator + Clone + '_ { self.input_queue_characters .as_slice() .iter()