From 050b510a30d6ee138f992de5ee47b8db2e4e143c Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 11 Feb 2025 23:20:12 +0700 Subject: [PATCH] Fix `clippy::needless_lifetimes` lint --- glyph/src/codepoint_ids.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glyph/src/codepoint_ids.rs b/glyph/src/codepoint_ids.rs index cd93555..f31a1a2 100644 --- a/glyph/src/codepoint_ids.rs +++ b/glyph/src/codepoint_ids.rs @@ -6,7 +6,7 @@ pub struct CodepointIdIter<'a> { pub(crate) inner: Box + 'a>, } -impl<'a> Iterator for CodepointIdIter<'a> { +impl Iterator for CodepointIdIter<'_> { type Item = (GlyphId, char); #[inline]