Elide lifetimes

This commit is contained in:
Connor Slade
2025-02-08 13:33:22 -05:00
parent 9c0bc437e0
commit 738a22bce5
3 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ impl Image {
}
}
impl<'a> Iterator for ImageRuns<'a> {
impl Iterator for ImageRuns<'_> {
type Item = Run;
fn next(&mut self) -> Option<Self::Item> {