about summary refs log tree commit diff
path: root/compiler/rustc_query_impl/src/profiling_support.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-12-18 11:28:02 +0100
committerGitHub <noreply@github.com>2021-12-18 11:28:02 +0100
commitdf428917ef5346b28958223e2d07b66ec79fe9f3 (patch)
tree26fd7bc25a0a4fc15874a385496c3ac5d6bf5a93 /compiler/rustc_query_impl/src/profiling_support.rs
parent069ffec6373af8ad7027b74e7b43b042d83308bf (diff)
parent77a0c65264ebe36ac7e3fecc775cfe05dfeeec46 (diff)
downloadrust-df428917ef5346b28958223e2d07b66ec79fe9f3.tar.gz
rust-df428917ef5346b28958223e2d07b66ec79fe9f3.zip
Rollup merge of #91923 - LegionMammal978:less-inband-query_impl, r=michaelwoerister
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.rs2
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;
     }