fix lint #300
Annotations
2 errors and 1 warning
the following explicit lifetimes could be elided: 'a:
src/disktree/iter.rs#L172
error: the following explicit lifetimes could be elided: 'a
--> src/disktree/iter.rs:172:6
|
172 | impl<'a> DtSeek for Iter<'a> {
| ^^ ^^
|
= 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 clippy::all`
= help: to override `-D clippy::all` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
172 - impl<'a> DtSeek for Iter<'a> {
172 + impl DtSeek for Iter<'_> {
|
|
build
Clippy had exited with the 101 exit code
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|