Skip to content

Commit 3cee5c2

Browse files
committed
fix tidy error
1 parent 12a2305 commit 3cee5c2

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
@@ -956,7 +956,10 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
956956
self.tcx.mk_var(self.next_ty_var_id(universe, false, origin))
957957
}
958958

959-
pub fn next_diverging_ty_var(&self, universe: ty::UniverseIndex, origin: TypeVariableOrigin) -> Ty<'tcx> {
959+
pub fn next_diverging_ty_var(&self,
960+
universe: ty::UniverseIndex,
961+
origin: TypeVariableOrigin)
962+
-> Ty<'tcx> {
960963
self.tcx.mk_var(self.next_ty_var_id(universe, true, origin))
961964
}
962965

0 commit comments

Comments
 (0)