about summary refs log tree commit diff
path: root/src/librustc/dep_graph
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-01-09 11:18:47 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2020-01-10 07:41:30 +0100
commit8bd3d240e3fbfe5ad39585faef1fcfb4ae42ac59 (patch)
tree0600a52ab918d3b176ece187a3f0b8e3ff68501c /src/librustc/dep_graph
parent2d8d559bbecf6272eb41f8a800e319238aa9d621 (diff)
downloadrust-8bd3d240e3fbfe5ad39585faef1fcfb4ae42ac59.tar.gz
rust-8bd3d240e3fbfe5ad39585faef1fcfb4ae42ac59.zip
nix syntax::errors & prefer rustc_errors over errors
Diffstat (limited to 'src/librustc/dep_graph')
-rw-r--r--src/librustc/dep_graph/graph.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/dep_graph/graph.rs b/src/librustc/dep_graph/graph.rs
index 0d03c834e0f..78895340b07 100644
--- a/src/librustc/dep_graph/graph.rs
+++ b/src/librustc/dep_graph/graph.rs
@@ -1,10 +1,10 @@
 use crate::ty::{self, TyCtxt};
-use errors::Diagnostic;
 use parking_lot::{Condvar, Mutex};
 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
 use rustc_data_structures::sharded::{self, Sharded};
 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
 use rustc_data_structures::sync::{AtomicU32, AtomicU64, Lock, Lrc, Ordering};
+use rustc_errors::Diagnostic;
 use rustc_index::vec::{Idx, IndexVec};
 use smallvec::SmallVec;
 use std::collections::hash_map::Entry;