Add sys::furi::Error
type for kernel errors
#306
Annotations
2 warnings
Run Clippy (beta)
The `warn` input is deprecated in v1.4 and can be used within the `check-args` input
|
Run Clippy (beta):
tools/src/bin/fap-lld/main.rs#L84
warning: the following explicit lifetimes could be elided: 'data
--> src/bin/fap-lld/fastrel.rs:84:6
|
84 | impl<'data> FastRel<'data> {
| ^^^^^ ^^^^^
|
= 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
|
84 - impl<'data> FastRel<'data> {
84 + impl FastRel<'_> {
|
|
Loading