about summary refs log tree commit diff
path: root/compiler/rustc_data_structures
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-01-25 18:48:07 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2023-01-31 10:29:33 -0500
commit652f79e83543eab07c33840748cf5df37b42ac66 (patch)
tree53ab292dc1a9142867c91a81578af11ae8cc317c /compiler/rustc_data_structures
parent5b08c9f39754039ef9c6cbde157ac9eb8c252a58 (diff)
downloadrust-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.rs5
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;