String parsing for char[] #743
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
test.yml
on: pull_request
Matrix: internal-tests
Matrix: msrv
docs
19m 13s
Matrix: build
test-embedded-size
37s
Annotations
1 error and 1 warning
|
test-embedded-size
Process completed with exit code 101.
|
|
variables can be used directly in the `format!` string:
mavlink-bindgen/src/parser.rs#L1046
warning: variables can be used directly in the `format!` string
--> mavlink-bindgen/src/parser.rs:1046:29
|
1046 | String(size) => format!("arrayvec::ArrayString<{}>", size),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
1046 - String(size) => format!("arrayvec::ArrayString<{}>", size),
1046 + String(size) => format!("arrayvec::ArrayString<{size}>"),
|
|