1
Fork 0

Remove re-export.

This commit is contained in:
Camille GILLOT 2020-11-14 16:48:54 +01:00
parent c355b2e5cd
commit 02025d86ac
31 changed files with 35 additions and 26 deletions

View file

@ -20,10 +20,10 @@ use rustc_data_structures::fingerprint::Fingerprint;
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
use rustc_errors::DiagnosticBuilder;
use rustc_middle::dep_graph;
use rustc_middle::ich::StableHashingContext;
use rustc_middle::ty::query::{query_keys, query_storage, query_stored, query_values};
use rustc_middle::ty::query::{Providers, QueryEngine};
use rustc_middle::ty::{self, TyCtxt};
use rustc_query_system::ich::StableHashingContext;
use rustc_span::Span;
#[macro_use]

View file

@ -36,7 +36,7 @@ impl<'tcx> std::ops::Deref for QueryCtxt<'tcx> {
impl HasDepContext for QueryCtxt<'tcx> {
type DepKind = rustc_middle::dep_graph::DepKind;
type StableHashingContext = rustc_middle::ich::StableHashingContext<'tcx>;
type StableHashingContext = rustc_query_system::ich::StableHashingContext<'tcx>;
type DepContext = TyCtxt<'tcx>;
#[inline]