Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clippy
:semicolon_if_nothing_returned
warning: consider adding a `;` to the last statement for consistent formatting --> src/cmd/excel.rs:628:29 | 628 | ... record.push_field(if *b { "true" } else { "false" }) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add a `;` here: `record.push_field(if *b { "true" } else { "false" });` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned = note: `-W clippy::semicolon-if-nothing-returned` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::semicolon_if_nothing_returned)]`
- Loading branch information