diff options
| author | Sean Griffin <sean@seantheprogrammer.com> | 2018-03-06 09:02:33 -0700 |
|---|---|---|
| committer | Sean Griffin <sean@seantheprogrammer.com> | 2018-03-23 13:18:50 -0600 |
| commit | 5ecefc55c1795c0365972a6c70fa17663833bd7f (patch) | |
| tree | 1b3b640262ac6b62890433e1a0a4ed44e0806a32 | |
| parent | 8128ae3d395de9da5846500000750dc8f29158f3 (diff) | |
| download | rust-5ecefc55c1795c0365972a6c70fa17663833bd7f.tar.gz rust-5ecefc55c1795c0365972a6c70fa17663833bd7f.zip | |
Revert "fix tidy error"
This reverts commit a985634fc08893d9e1255e287ad4bacc2cefa2ce.
| -rw-r--r-- | src/librustc/infer/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/librustc/infer/mod.rs b/src/librustc/infer/mod.rs index fe919775da0..f9ffdd52712 100644 --- a/src/librustc/infer/mod.rs +++ b/src/librustc/infer/mod.rs @@ -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)) } |
