Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore uninlined_format_args pedantic clippy lint
warning: variables can be used directly in the `format!` string --> benches/timer.rs:16:13 | 16 | let _ = writeln!(&mut writer, "{} in {} mode: {} micros", name, mode, micros); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic` help: change this to | 16 - let _ = writeln!(&mut writer, "{} in {} mode: {} micros", name, mode, micros); 16 + let _ = writeln!(&mut writer, "{name} in {mode} mode: {micros} micros"); |
- Loading branch information