about summary refs log tree commit diff
path: root/compiler/rustc_query_impl/src
diff options
context:
space:
mode:
authorKyle Matsuda <kyle.yoshio.matsuda@gmail.com>2023-04-17 11:46:01 -0600
committerKyle Matsuda <kyle.yoshio.matsuda@gmail.com>2023-04-18 16:33:06 -0600
commit522bc5f817696c113a03a462a5dbec794263dfcb (patch)
treec08e2be0887fdeb85466cf0ed914cd6ebc8d5f84 /compiler/rustc_query_impl/src
parentde96f3d8735b70d5dc1ca178aaee198b329b8f3d (diff)
downloadrust-522bc5f817696c113a03a462a5dbec794263dfcb.tar.gz
rust-522bc5f817696c113a03a462a5dbec794263dfcb.zip
add EarlyBinder to return type of collect_return_position_impl_trait_in_trait_tys query; remove bound_X version
Diffstat (limited to 'compiler/rustc_query_impl/src')
-rw-r--r--compiler/rustc_query_impl/src/on_disk_cache.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/on_disk_cache.rs b/compiler/rustc_query_impl/src/on_disk_cache.rs
index 30477c7bd44..4ff72fee086 100644
--- a/compiler/rustc_query_impl/src/on_disk_cache.rs
+++ b/compiler/rustc_query_impl/src/on_disk_cache.rs
@@ -806,7 +806,9 @@ impl<'a, 'tcx> Decodable<CacheDecoder<'a, 'tcx>> for &'tcx UnordSet<LocalDefId>
     }
 }
 
-impl<'a, 'tcx> Decodable<CacheDecoder<'a, 'tcx>> for &'tcx FxHashMap<DefId, Ty<'tcx>> {
+impl<'a, 'tcx> Decodable<CacheDecoder<'a, 'tcx>>
+    for &'tcx FxHashMap<DefId, ty::EarlyBinder<Ty<'tcx>>>
+{
     fn decode(d: &mut CacheDecoder<'a, 'tcx>) -> Self {
         RefDecodable::decode(d)
     }