diff options
| author | LegionMammal978 <mattlloydhouse@gmail.com> | 2021-12-14 12:13:07 -0500 |
|---|---|---|
| committer | LegionMammal978 <mattlloydhouse@gmail.com> | 2021-12-14 12:13:07 -0500 |
| commit | 77a0c65264ebe36ac7e3fecc775cfe05dfeeec46 (patch) | |
| tree | a9c45532966112f5d50498a24e073aac28fce38c /compiler/rustc_query_impl/src/profiling_support.rs | |
| parent | 404c8471aba60c2d837fa728e7c729a0f52d5830 (diff) | |
| download | rust-77a0c65264ebe36ac7e3fecc775cfe05dfeeec46.tar.gz rust-77a0c65264ebe36ac7e3fecc775cfe05dfeeec46.zip | |
Remove `in_band_lifetimes` from `rustc_query_impl`
See #91867 for more information.
Diffstat (limited to 'compiler/rustc_query_impl/src/profiling_support.rs')
| -rw-r--r-- | compiler/rustc_query_impl/src/profiling_support.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/profiling_support.rs b/compiler/rustc_query_impl/src/profiling_support.rs index 95edc1e93a5..41ee75c2432 100644 --- a/compiler/rustc_query_impl/src/profiling_support.rs +++ b/compiler/rustc_query_impl/src/profiling_support.rs @@ -295,7 +295,7 @@ fn alloc_self_profile_query_strings_for_query_cache<'tcx, C>( /// If we are recording only summary data, the ids will point to /// just the query names. If we are recording query keys too, we /// allocate the corresponding strings here. -pub fn alloc_self_profile_query_strings(tcx: TyCtxt<'tcx>) { +pub fn alloc_self_profile_query_strings(tcx: TyCtxt<'_>) { if !tcx.prof.enabled() { return; } |
