Enable some warnings

This commit is contained in:
Joscha 2022-08-02 01:49:08 +02:00
parent baa49107f1
commit 00bcdddc62
8 changed files with 30 additions and 15 deletions

View file

@ -66,7 +66,7 @@ impl<I> Blocks<I> {
}
}
pub fn iter(&self) -> vec_deque::Iter<Block<I>> {
pub fn iter(&self) -> vec_deque::Iter<'_, Block<I>> {
self.blocks.iter()
}