Skip to content

Merge pull request #13 from kimbauters/dry-run #37

Merge pull request #13 from kimbauters/dry-run

Merge pull request #13 from kimbauters/dry-run #37

GitHub Actions / clippy succeeded Jun 26, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.79.0 (129f3b996 2024-06-10)
  • cargo 1.79.0 (ffa9cf99a 2024-06-03)
  • clippy 0.1.79 (129f3b9 2024-06-10)

Annotations

Check warning on line 86 in src/message/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

equality checks against false can be replaced by a negation

warning: equality checks against false can be replaced by a negation
  --> src/message/mod.rs:86:5
   |
86 |     *b == false
   |     ^^^^^^^^^^^ help: try simplifying it as shown: `!(*b)`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_comparison
   = note: `#[warn(clippy::bool_comparison)]` on by default