Skip to content

Commit

Permalink
Auto merge of #3685 - rust-lang:rustup, r=oli-obk
Browse files Browse the repository at this point in the history
Rustup
  • Loading branch information
bors committed Jan 22, 2019
2 parents 9d5b148 + 38cdf63 commit 46b62b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clippy_lints/src/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Arithmetic {
}
self.const_span = Some(body_span);
},
hir::BodyOwnerKind::Fn => (),
hir::BodyOwnerKind::Fn | hir::BodyOwnerKind::Closure => (),
}
}

Expand Down
11 changes: 8 additions & 3 deletions clippy_lints/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,14 @@ pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
/// ```
pub fn in_constant(cx: &LateContext<'_, '_>, id: NodeId) -> bool {
let parent_id = cx.tcx.hir().get_parent(id);
match cx.tcx.hir().body_owner_kind(parent_id) {
hir::BodyOwnerKind::Fn => false,
hir::BodyOwnerKind::Const | hir::BodyOwnerKind::Static(..) => true,
match cx.tcx.hir().get(parent_id) {
| Node::Item(&Item { node: ItemKind::Const(..), .. })
| Node::TraitItem(&TraitItem { node: TraitItemKind::Const(..), .. })
| Node::ImplItem(&ImplItem { node: ImplItemKind::Const(..), .. })
| Node::AnonConst(_)
| Node::Item(&Item { node: ItemKind::Static(..), .. })
=> true,
_ => false,
}
}

Expand Down

0 comments on commit 46b62b7

Please sign in to comment.