Skip to content

Commit a985634

Browse files
nikomatsakissgrif
authored andcommitted
fix tidy error
1 parent 35e78b5 commit a985634

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/librustc/infer/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,10 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
10291029
self.tcx.mk_var(self.next_ty_var_id(universe, false, origin))
10301030
}
10311031

1032-
pub fn next_diverging_ty_var(&self, universe: ty::UniverseIndex, origin: TypeVariableOrigin) -> Ty<'tcx> {
1032+
pub fn next_diverging_ty_var(&self,
1033+
universe: ty::UniverseIndex,
1034+
origin: TypeVariableOrigin)
1035+
-> Ty<'tcx> {
10331036
self.tcx.mk_var(self.next_ty_var_id(universe, true, origin))
10341037
}
10351038

0 commit comments

Comments
 (0)