Skip to content

Commit 8f15989

Browse files
committed
WIP pacify the mercilous tidy (call to normalize_erasing_late_bound_regions)
1 parent 715ffba commit 8f15989

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/librustc_trans/debuginfo/metadata.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,10 @@ fn subroutine_type_metadata<'a, 'tcx>(cx: &CodegenCx<'a, 'tcx>,
353353
span: Span)
354354
-> MetadataCreationResult
355355
{
356-
let signature = cx.tcx.normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), &signature);
356+
let signature = cx.tcx.normalize_erasing_late_bound_regions(
357+
ty::ParamEnv::reveal_all(),
358+
&signature,
359+
);
357360

358361
let mut signature_metadata: Vec<DIType> = Vec::with_capacity(signature.inputs().len() + 1);
359362

0 commit comments

Comments
 (0)