about summary refs log tree commit diff
path: root/clippy_lints/src/arithmetic.rs
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2020-01-04 11:00:00 +0100
committerPhilipp Hansch <dev@phansch.net>2020-01-04 11:30:03 +0100
commitc5178e82b4ed8fd9210e382dcd2735d438957434 (patch)
treece7280dc895dfb835f5fe699400a0652f99250a5 /clippy_lints/src/arithmetic.rs
parentfa9b85d4df05291956e7957f6dc819925a90e7b9 (diff)
downloadrust-c5178e82b4ed8fd9210e382dcd2735d438957434.tar.gz
rust-c5178e82b4ed8fd9210e382dcd2735d438957434.zip
Rustup to https://github.com/rust-lang/rust/pull/67853
Specifically caused by https://github.com/rust-lang/rust/pull/67786
Diffstat (limited to 'clippy_lints/src/arithmetic.rs')
-rw-r--r--clippy_lints/src/arithmetic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/arithmetic.rs b/clippy_lints/src/arithmetic.rs
index cff9a590e12..dc7a0c63307 100644
--- a/clippy_lints/src/arithmetic.rs
+++ b/clippy_lints/src/arithmetic.rs
@@ -4,7 +4,7 @@ use rustc::hir;
 use rustc::impl_lint_pass;
 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
 use rustc_session::declare_tool_lint;
-use syntax::source_map::Span;
+use rustc_span::source_map::Span;
 
 declare_clippy_lint! {
     /// **What it does:** Checks for plain integer arithmetic.