diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2018-08-19 19:06:53 -0700 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-08-19 19:06:54 -0700 |
| commit | 76321d3300e0047351fafdfd8e93a15b5a0c1065 (patch) | |
| tree | 34717b02960530c6bd0939e4f1f929b29601902e /clippy_lints/src/missing_inline.rs | |
| parent | 07c2e614362ad8645eafe771e672a65f92e3b9a2 (diff) | |
| download | rust-76321d3300e0047351fafdfd8e93a15b5a0c1065.tar.gz rust-76321d3300e0047351fafdfd8e93a15b5a0c1065.zip | |
codemap -> source_map
https://github.com/rust-lang/rust/pull/52953
Diffstat (limited to 'clippy_lints/src/missing_inline.rs')
| -rw-r--r-- | clippy_lints/src/missing_inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/missing_inline.rs b/clippy_lints/src/missing_inline.rs index e80a0a1d8c3..8e2b08b5152 100644 --- a/clippy_lints/src/missing_inline.rs +++ b/clippy_lints/src/missing_inline.rs @@ -13,7 +13,7 @@ use rustc::hir; use rustc::lint::*; use rustc::{declare_lint, lint_array}; use syntax::ast; -use syntax::codemap::Span; +use syntax::source_map::Span; /// **What it does:** it lints if an exported function, method, trait method with default impl, /// or trait method impl is not `#[inline]`. |
