Auto merge of #12416 - Veykril:patch-2, r=blyxyas

Add missing header for `manual_is_variant_and`

Noticed this while generating our lint completions failed in rust-analyzer (separate PR from https://github.com/rust-lang/rust-clippy/pull/12415 as I made these via the github interface quickly)
changelog: none
This commit is contained in:
bors 2024-03-04 16:27:23 +00:00
commit 5214ab557f

View File

@ -3875,6 +3875,7 @@
} }
declare_clippy_lint! { declare_clippy_lint! {
/// ### What it does
/// Checks for usage of `option.map(f).unwrap_or_default()` and `result.map(f).unwrap_or_default()` where f is a function or closure that returns the `bool` type. /// Checks for usage of `option.map(f).unwrap_or_default()` and `result.map(f).unwrap_or_default()` where f is a function or closure that returns the `bool` type.
/// ///
/// ### Why is this bad? /// ### Why is this bad?