We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f4c888 commit 0f918cbCopy full SHA for 0f918cb
src/librustc/dep_graph/mod.rs
@@ -1,4 +1,5 @@
1
use crate::ich::StableHashingContext;
2
+use crate::ty::query::try_load_from_on_disk_cache;
3
use crate::ty::{self, TyCtxt};
4
use rustc_data_structures::profiling::SelfProfilerRef;
5
use rustc_data_structures::sync::Lock;
@@ -148,7 +149,6 @@ impl<'tcx> DepContext for TyCtxt<'tcx> {
148
149
150
// Interactions with on_disk_cache
151
fn try_load_from_on_disk_cache(&self, dep_node: &DepNode) {
- use crate::ty::query::try_load_from_on_disk_cache;
152
try_load_from_on_disk_cache(*self, dep_node)
153
}
154
0 commit comments