Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore double_ended_iterator_last clippy lint
warning: called `Iterator::last` on a `DoubleEndedIterator`; this will needlessly iterate the entire iterator --> src/error.rs:482:22 | 482 | self.chain().last().unwrap() | ^^^^^^ help: try: `next_back()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#double_ended_iterator_last = note: `-W clippy::double-ended-iterator-last` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::double_ended_iterator_last)]`
- Loading branch information