X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Farithmetic.rs;h=7653ba43459f2db068f24be9a778f71b2d65745c;hb=6d1225981177587fbb68d9c4902c770c3dbaafb0;hp=2c46bf2dc12d6b57ec6a3145908f90143276818d;hpb=dbdd75ab528aa31b7d3ce06f186df95ace91baa1;p=rust.git diff --git a/clippy_lints/src/arithmetic.rs b/clippy_lints/src/arithmetic.rs index 2c46bf2dc12..7653ba43459 100644 --- a/clippy_lints/src/arithmetic.rs +++ b/clippy_lints/src/arithmetic.rs @@ -1,8 +1,9 @@ use crate::consts::constant_simple; use crate::utils::span_lint; use rustc::hir; +use rustc::impl_lint_pass; use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; -use rustc::{declare_tool_lint, impl_lint_pass}; +use rustc_session::declare_tool_lint; use syntax::source_map::Span; declare_clippy_lint! { @@ -112,7 +113,7 @@ fn check_expr_post(&mut self, _: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr) } } - fn check_body(&mut self, cx: &LateContext<'_, '_>, body: &hir::Body) { + fn check_body(&mut self, cx: &LateContext<'_, '_>, body: &hir::Body<'_>) { let body_owner = cx.tcx.hir().body_owner(body.id()); match cx.tcx.hir().body_owner_kind(body_owner) { @@ -130,7 +131,7 @@ fn check_body(&mut self, cx: &LateContext<'_, '_>, body: &hir::Body) { } } - fn check_body_post(&mut self, cx: &LateContext<'_, '_>, body: &hir::Body) { + fn check_body_post(&mut self, cx: &LateContext<'_, '_>, body: &hir::Body<'_>) { let body_owner = cx.tcx.hir().body_owner(body.id()); let body_span = cx.tcx.hir().span(body_owner);