diff options
| author | Michael Goulet <michael@errs.io> | 2022-05-22 12:57:46 -0700 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-05-28 11:38:22 -0700 |
| commit | a056a953f00d7b78d12dc192b34c47cca6fa7b6b (patch) | |
| tree | cec1788af1bb7d4e9e09b02227acd4d8479f94a1 /compiler/rustc_query_impl/src | |
| parent | a7015fe8169ebfcd6707f34bf190cb4c4ae302f7 (diff) | |
| download | rust-a056a953f00d7b78d12dc192b34c47cca6fa7b6b.tar.gz rust-a056a953f00d7b78d12dc192b34c47cca6fa7b6b.zip | |
Initial fixes on top of type interner commit
Diffstat (limited to 'compiler/rustc_query_impl/src')
| -rw-r--r-- | compiler/rustc_query_impl/src/on_disk_cache.rs | 2 |
1 files changed, 1 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 5282c317fc4..7dc6921a569 100644 --- a/compiler/rustc_query_impl/src/on_disk_cache.rs +++ b/compiler/rustc_query_impl/src/on_disk_cache.rs @@ -11,7 +11,7 @@ use rustc_middle::mir::interpret::{AllocDecodingSession, AllocDecodingState}; use rustc_middle::mir::{self, interpret}; use rustc_middle::thir; use rustc_middle::ty::codec::{RefDecodable, TyDecoder, TyEncoder}; -use rustc_middle::ty::{self, Ty, TyCtxt}; +use rustc_middle::ty::{self, Ty, TyCtxt, TyInterner}; use rustc_query_system::dep_graph::DepContext; use rustc_query_system::query::{QueryCache, QueryContext, QuerySideEffects}; use rustc_serialize::{ |
