Remove in_band_lifetimes
from rustc_codegen_ssa
See #91867 for more information.
This commit is contained in:
parent
d594910a2d
commit
eaf39cbd9e
8 changed files with 16 additions and 17 deletions
|
@ -376,7 +376,7 @@ fn push_debuginfo_type_name<'tcx>(
|
|||
// format (natvis) is able to understand enums and render the active variant correctly in the
|
||||
// debugger. For more information, look in `src/etc/natvis/intrinsic.natvis` and
|
||||
// `EnumMemberDescriptionFactor::create_member_descriptions`.
|
||||
fn msvc_enum_fallback(
|
||||
fn msvc_enum_fallback<'tcx>(
|
||||
tcx: TyCtxt<'tcx>,
|
||||
ty: Ty<'tcx>,
|
||||
def: &AdtDef,
|
||||
|
@ -496,7 +496,7 @@ pub fn compute_debuginfo_vtable_name<'tcx>(
|
|||
vtable_name
|
||||
}
|
||||
|
||||
pub fn push_item_name(tcx: TyCtxt<'tcx>, def_id: DefId, qualified: bool, output: &mut String) {
|
||||
pub fn push_item_name(tcx: TyCtxt<'_>, def_id: DefId, qualified: bool, output: &mut String) {
|
||||
let def_key = tcx.def_key(def_id);
|
||||
if qualified {
|
||||
if let Some(parent) = def_key.parent {
|
||||
|
@ -509,7 +509,7 @@ pub fn push_item_name(tcx: TyCtxt<'tcx>, def_id: DefId, qualified: bool, output:
|
|||
}
|
||||
|
||||
fn push_unqualified_item_name(
|
||||
tcx: TyCtxt<'tcx>,
|
||||
tcx: TyCtxt<'_>,
|
||||
def_id: DefId,
|
||||
disambiguated_data: DisambiguatedDefPathData,
|
||||
output: &mut String,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue