Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clippy::needless_lifetimes warning (#147)
``` error: the following explicit lifetimes could be elided: 'a --> src/lib.rs:212:6 | 212 | impl<'a, T> Clone for Iter<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 212 - impl<'a, T> Clone for Iter<'a, T> { 212 + impl<T> Clone for Iter<'_, T> { | ```
- Loading branch information