Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/cmd/count.rs:76:43 | 76 | woutinfo!("{};{}", HumanCount(count as u64), HumanCount(width as u64)); | ^^^^^^^^^^^^ help: try: `count` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/cmd/count.rs:78:40 | 78 | woutinfo!("{}", HumanCount(count as u64)); | ^^^^^^^^^^^^ help: try: `count` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
- Loading branch information