Revert "fix tidy error"

This reverts commit a985634fc08893d9e1255e287ad4bacc2cefa2ce.
This commit is contained in:
Sean Griffin 2018-03-06 09:02:33 -07:00
parent 8128ae3d39
commit 5ecefc55c1

View File

@ -851,10 +851,7 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
self.tcx.mk_var(self.next_ty_var_id(universe, false, origin))
}
pub fn next_diverging_ty_var(&self,
universe: ty::UniverseIndex,
origin: TypeVariableOrigin)
-> Ty<'tcx> {
pub fn next_diverging_ty_var(&self, universe: ty::UniverseIndex, origin: TypeVariableOrigin) -> Ty<'tcx> {
self.tcx.mk_var(self.next_ty_var_id(universe, true, origin))
}