Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: returning the result of a `let` binding from a block --> flags/src/impl.rs:14:5 | 3 | let mut flag = "c++11"; | ----------------------- unnecessary `let` binding ... 14 | flag | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return = note: `-W clippy::let-and-return` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::let_and_return)]` help: return the expression directly | 3 ~ 4 | ... 13 | 14 ~ ("c++11") as _ |
- Loading branch information