We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I received this clippy error for a PAC generated with svd2rust v0.35.0:
va108xx-rs on ξ some-clippy-fixes [$+] via π v3.12.3 (venv) via π¦ v1.84.0 β― cargo clippy Compiling va108xx v0.3.0 (/home/rmueller/Rust/va108xx-rs/va108xx) warning: the following explicit lifetimes could be elided: 'a --> va108xx/src/generic.rs:209:6 | 209 | impl<'a, REG, const WI: u8, FI, Safety> FieldWriter<'a, REG, WI, FI, Safety> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 209 - impl<'a, REG, const WI: u8, FI, Safety> FieldWriter<'a, REG, WI, FI, Safety> 209 + impl<REG, const WI: u8, FI, Safety> FieldWriter<'_, REG, WI, FI, Safety> | warning: `va108xx` (lib) generated 1 warning (run `cargo clippy --fix --lib -p va108xx` to apply 1 suggestion) Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.50s
clippy version: 0.1.84 rust version: rustc 1.84.0
The text was updated successfully, but these errors were encountered:
If this works well on rust 1.76 (MSRV), please make PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I received this clippy error for a PAC generated with svd2rust v0.35.0:
clippy version: 0.1.84
rust version: rustc 1.84.0
The text was updated successfully, but these errors were encountered: