diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2016-03-25 05:22:52 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2016-05-11 04:14:58 +0300 |
| commit | 8a704f6dc7f0ed6be1554867c2a95e4e322cc1bc (patch) | |
| tree | eb21eda37a9bbad1371ce0c169ccca7f1b730713 /src/librustc/util | |
| parent | 0053b442f8cd5bf5e310a2664fc3a47a8f33da71 (diff) | |
| download | rust-8a704f6dc7f0ed6be1554867c2a95e4e322cc1bc.tar.gz rust-8a704f6dc7f0ed6be1554867c2a95e4e322cc1bc.zip | |
rustc: Remove the TyCtxt field from ParameterEnvironment.
Diffstat (limited to 'src/librustc/util')
| -rw-r--r-- | src/librustc/util/ppaux.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/util/ppaux.rs b/src/librustc/util/ppaux.rs index 47d7e3a0a3c..cf00f790e53 100644 --- a/src/librustc/util/ppaux.rs +++ b/src/librustc/util/ppaux.rs @@ -557,7 +557,7 @@ impl<'tcx> fmt::Debug for ty::ClosureUpvar<'tcx> { } } -impl<'a, 'tcx> fmt::Debug for ty::ParameterEnvironment<'a, 'tcx> { +impl<'tcx> fmt::Debug for ty::ParameterEnvironment<'tcx> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "ParameterEnvironment(\ free_substs={:?}, \ |
