Remove arena_cache
modifier from queries which return Copy
types
This commit is contained in:
parent
2d14db321b
commit
236ddf36b3
1 changed files with 1 additions and 2 deletions
|
@ -729,9 +729,8 @@ rustc_queries! {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Maps from a trait item to the trait item "descriptor".
|
/// Maps from a trait item to the trait item "descriptor".
|
||||||
query associated_item(key: DefId) -> &'tcx ty::AssocItem {
|
query associated_item(key: DefId) -> ty::AssocItem {
|
||||||
desc { |tcx| "computing associated item data for `{}`", tcx.def_path_str(key) }
|
desc { |tcx| "computing associated item data for `{}`", tcx.def_path_str(key) }
|
||||||
arena_cache
|
|
||||||
cache_on_disk_if { key.is_local() }
|
cache_on_disk_if { key.is_local() }
|
||||||
separate_provide_extern
|
separate_provide_extern
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue