Skip to content

Commit 206eb79

Browse files
committed
Fix needless_bool.rs
1 parent a8d8bb0 commit 206eb79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clippy_lints/src/needless_bool.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This lint is **warn** by default
44
55
use crate::utils::sugg::Sugg;
6-
use crate::utils::{in_macro, span_lint, span_lint_and_sugg};
6+
use crate::utils::{higher, in_macro, span_lint, span_lint_and_sugg};
77
use rustc::hir::*;
88
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
99
use rustc::{declare_lint_pass, declare_tool_lint};
@@ -59,7 +59,7 @@ declare_lint_pass!(NeedlessBool => [NEEDLESS_BOOL]);
5959
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBool {
6060
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
6161
use self::Expression::*;
62-
if let ExprKind::If(ref pred, ref then_block, Some(ref else_expr)) = e.node {
62+
if let Some((ref pred, ref then_block, Some(ref else_expr))) = higher::if_block(&e) {
6363
let reduce = |ret, not| {
6464
let mut applicability = Applicability::MachineApplicable;
6565
let snip = Sugg::hir_with_applicability(cx, pred, "<predicate>", &mut applicability);
@@ -119,7 +119,7 @@ fn parent_node_is_if_expr<'a, 'b>(expr: &Expr, cx: &LateContext<'a, 'b>) -> bool
119119
let parent_node = cx.tcx.hir().get_by_hir_id(parent_id);
120120

121121
if let rustc::hir::Node::Expr(e) = parent_node {
122-
if let ExprKind::If(_, _, _) = e.node {
122+
if higher::if_block(&e).is_some() {
123123
return true;
124124
}
125125
}

0 commit comments

Comments
 (0)