1
Fork 0

Remove 'tcx lifetime from OnDiskCache

This commit is contained in:
bjorn3 2024-11-03 20:50:46 +00:00
parent cdeddae4f6
commit 84873f8613
4 changed files with 16 additions and 21 deletions

View file

@ -198,12 +198,12 @@ trait QueryConfigRestored<'tcx> {
-> Self::RestoredValue;
}
pub fn query_system<'tcx>(
pub fn query_system<'a>(
local_providers: Providers,
extern_providers: ExternProviders,
on_disk_cache: Option<OnDiskCache<'tcx>>,
on_disk_cache: Option<OnDiskCache>,
incremental: bool,
) -> QuerySystem<'tcx> {
) -> QuerySystem<'a> {
QuerySystem {
states: Default::default(),
arenas: Default::default(),