Update actions/checkout action to v5 #5570
Annotations
4 errors
Run clippy
Error: Clippy has exited with exit code 101
|
Run clippy:
src/tiling/tile_restoration_state.rs#L417
error: hiding a lifetime that's elided elsewhere is confusing
--> src/tiling/tile_restoration_state.rs:417:25
|
417 | pub const fn as_const(&self) -> TileRestorationState {
| ^^^^^ -------------------- the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
417 | pub const fn as_const(&self) -> TileRestorationState<'_> {
| ++++
|
Run clippy:
src/predict.rs#L285
error: hiding a lifetime that's elided elsewhere is confusing
--> src/predict.rs:285:16
|
285 | rec_plane: &Plane<T>, po: PlaneOffset, mv: MotionVector,
| ^^^^^^^^^ the lifetime is elided here
286 | ) -> (i32, i32, PlaneSlice<T>) {
| ------------- the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `-D mismatched-lifetime-syntaxes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(mismatched_lifetime_syntaxes)]`
help: use `'_` for type paths
|
286 | ) -> (i32, i32, PlaneSlice<'_, T>) {
| +++
|
Run clippy:
target/debug/build/rav1e-4bd1e4ed4a7fa653/out/built.rs#L73
error: item in documentation is missing backticks
--> /home/runner/work/rav1e/rav1e/target/debug/build/rav1e-4bd1e4ed4a7fa653/out/built.rs:73:19
|
73 | #[doc=r#"Value of OPT_LEVEL for the profile used during compilation."#]
| ^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
= note: `-D clippy::doc-markdown` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::doc_markdown)]`
help: try
|
73 - #[doc=r#"Value of OPT_LEVEL for the profile used during compilation."#]
73 + #[doc=r#"Value of `OPT_LEVEL` for the profile used during compilation."#]
|
|
Loading