Skip to content

Commit

Permalink
Make Clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Mar 3, 2025
1 parent 7242c81 commit 7a3a60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo-afl/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ where
// The new LLVM pass manager was enabled in rustc 1.59.
let version_meta = rustc_version::version_meta().unwrap();
let passes = if (version_meta.semver.minor >= 59 || is_nightly())
&& version_meta.llvm_version.map_or(true, |v| v.major >= 13)
&& version_meta.llvm_version.is_none_or(|v| v.major >= 13)
{
"sancov-module"
} else {
Expand Down

0 comments on commit 7a3a60a

Please sign in to comment.