Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk
rustc: Remove needless lifetimes
This commit is contained in:
commit
d23cb738d2
109 changed files with 266 additions and 320 deletions
|
@ -340,9 +340,9 @@ where
|
|||
/// which will be used if the query is not in the cache and we need
|
||||
/// to compute it.
|
||||
#[inline]
|
||||
pub fn try_get_cached<'a, Tcx, C, R, OnHit>(
|
||||
pub fn try_get_cached<Tcx, C, R, OnHit>(
|
||||
tcx: Tcx,
|
||||
cache: &'a C,
|
||||
cache: &C,
|
||||
key: &C::Key,
|
||||
// `on_hit` can be called while holding a lock to the query cache
|
||||
on_hit: OnHit,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue