about summary refs log tree commit diff
path: root/src/libsyntax/source_map.rs
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-02-08 00:56:05 +0900
committerTaiki Endo <te316e89@gmail.com>2019-02-13 00:28:52 +0900
commit3216c7656afbada6af3cbf77ef5236a7153f58e8 (patch)
treee8050b4e56556ec8eb91357faa11bfbe07888828 /src/libsyntax/source_map.rs
parentc84e7976423bb910bb5eb5eecffc7e33a897a97f (diff)
downloadrust-3216c7656afbada6af3cbf77ef5236a7153f58e8.tar.gz
rust-3216c7656afbada6af3cbf77ef5236a7153f58e8.zip
Rename rustc_errors dependency in rust 2018 crates
Diffstat (limited to 'src/libsyntax/source_map.rs')
-rw-r--r--src/libsyntax/source_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/source_map.rs b/src/libsyntax/source_map.rs
index 552a3d30261..d33415eb68a 100644
--- a/src/libsyntax/source_map.rs
+++ b/src/libsyntax/source_map.rs
@@ -24,7 +24,7 @@ use std::fs;
 use std::io;
 use log::debug;
 
-use crate::errors::SourceMapper;
+use errors::SourceMapper;
 
 /// Return the span itself if it doesn't come from a macro expansion,
 /// otherwise return the call site span up to the `enclosing_sp` by