Daily check #568
Annotations
3 errors
Lint code by clippy(stable):
src/preview/terminal/ui/cache.rs#L124
error: the following explicit lifetimes could be elided: 'a
--> src/preview/terminal/ui/cache.rs:124:6
|
124 | impl<'a> Iterator for GlyphCanvasShapePoints<'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 warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
124 - impl<'a> Iterator for GlyphCanvasShapePoints<'a> {
124 + impl Iterator for GlyphCanvasShapePoints<'_> {
|
|
Lint code by clippy(stable):
src/preview/terminal/ui/cache.rs#L124
error: the following explicit lifetimes could be elided: 'a
--> src/preview/terminal/ui/cache.rs:124:6
|
124 | impl<'a> Iterator for GlyphCanvasShapePoints<'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 warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
124 - impl<'a> Iterator for GlyphCanvasShapePoints<'a> {
124 + impl Iterator for GlyphCanvasShapePoints<'_> {
|
|
Lint code by clippy(stable)
Clippy has exited with exit code 101
|
Loading