diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-01-25 18:48:07 -0500 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-01-31 10:29:33 -0500 |
| commit | 652f79e83543eab07c33840748cf5df37b42ac66 (patch) | |
| tree | 53ab292dc1a9142867c91a81578af11ae8cc317c /compiler/rustc_data_structures | |
| parent | 5b08c9f39754039ef9c6cbde157ac9eb8c252a58 (diff) | |
| download | rust-652f79e83543eab07c33840748cf5df37b42ac66.tar.gz rust-652f79e83543eab07c33840748cf5df37b42ac66.zip | |
Download rustc component for rustfmt toolchain as well
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/src/obligation_forest/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_data_structures/src/obligation_forest/mod.rs b/compiler/rustc_data_structures/src/obligation_forest/mod.rs index 10e673cd929..a7130abd731 100644 --- a/compiler/rustc_data_structures/src/obligation_forest/mod.rs +++ b/compiler/rustc_data_structures/src/obligation_forest/mod.rs @@ -95,10 +95,7 @@ pub trait ForestObligation: Clone + Debug { pub trait ObligationProcessor { type Obligation: ForestObligation; type Error: Debug; - type OUT: OutcomeTrait< - Obligation = Self::Obligation, - Error = Error<Self::Obligation, Self::Error>, - >; + type OUT: OutcomeTrait<Obligation = Self::Obligation, Error = Error<Self::Obligation, Self::Error>>; fn needs_process_obligation(&self, obligation: &Self::Obligation) -> bool; |
