Commit 0d37b42
committed
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a
--> src/unindent.rs:83:6
|
83 | impl<'a, T: ?Sized + Unindent> Unindent for &'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
|
83 - impl<'a, T: ?Sized + Unindent> Unindent for &'a T {
83 + impl<T: ?Sized + Unindent> Unindent for &T {
|1 parent 78289e3 commit 0d37b42
2 files changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| 130 | + | |
130 | 131 | | |
131 | 132 | | |
132 | 133 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| 54 | + | |
54 | 55 | | |
55 | 56 | | |
56 | 57 | | |
| |||
0 commit comments