Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a --> src/matrix.rs:67:6 | 67 | impl<'a> DoubleEndedIterator for Iter<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 67 - impl<'a> DoubleEndedIterator for Iter<'a> { 67 + impl DoubleEndedIterator for Iter<'_> { | warning: the following explicit lifetimes could be elided: 'a --> src/matrix.rs:122:6 | 122 | impl<'a> Debug for RelativeRow<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 122 - impl<'a> Debug for RelativeRow<'a> { 122 + impl Debug for RelativeRow<'_> { |
- Loading branch information