Commit 27061af
committed
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a
--> src/rcvec.rs:96:6
|
96 | impl<'a, T> RcVecMut<'a, T> {
| ^^ ^^
|
= 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
|
96 - impl<'a, T> RcVecMut<'a, T> {
96 + impl<T> RcVecMut<'_, T> {
|1 parent 9c1d3eb commit 27061af
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| 108 | + | |
108 | 109 | | |
109 | 110 | | |
110 | 111 | | |
| |||
0 commit comments