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: 'de --> src/inherit.rs:23:6 | 23 | impl<'de> Visitor<'de> for True { | ^^^ ^^^ | = 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 | 23 - impl<'de> Visitor<'de> for True { 23 + impl Visitor<'_> for True { | warning: the following explicit lifetimes could be elided: 'a --> src/normalize.rs:158:6 | 158 | impl<'a> Filter<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 158 - impl<'a> Filter<'a> { 158 + impl Filter<'_> { |
- Loading branch information