You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 {
|
0 commit comments