Skip to content

Commit 4e2ef69

Browse files
committed
Remove an unnecessary loop label.
1 parent d8be00f commit 4e2ef69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_hir_analysis/src/outlives/implicit_infer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub(super) fn infer_predicates(
2424

2525
// If new predicates were added then we need to re-calculate
2626
// all crates since there could be new implied predicates.
27-
'outer: loop {
27+
loop {
2828
let mut predicates_added = false;
2929

3030
// Visit all the crates and infer predicates
@@ -90,7 +90,7 @@ pub(super) fn infer_predicates(
9090
}
9191

9292
if !predicates_added {
93-
break 'outer;
93+
break;
9494
}
9595
}
9696

0 commit comments

Comments
 (0)