This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore if_not_else Clippy pedantic lint
error: unnecessary boolean `not` operation --> src/number.rs:367:24 | 367 | } else if !b.is_nan() { | ________________________^ 368 | | Ordering::Greater 369 | | } else { 370 | | Ordering::Equal 371 | | } | |_________________^ | = note: `-D clippy::if-not-else` implied by `-D clippy::pedantic` = help: remove the `!` and swap the blocks of the `if`/`else` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#if_not_else
- Loading branch information