diff options
| author | lcnr <rust@lcnr.de> | 2022-02-21 11:56:36 +0100 |
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2022-02-21 12:00:26 +0100 |
| commit | 6a1f5eab83eda92bbdad3f0e680f4a32f5c8a2a1 (patch) | |
| tree | f4e614df691adc2c8e707f9e8923b4d175543733 /compiler/rustc_trait_selection/src | |
| parent | ec0a0ca3f496746c188373bf2530559ec9973c19 (diff) | |
| download | rust-6a1f5eab83eda92bbdad3f0e680f4a32f5c8a2a1.tar.gz rust-6a1f5eab83eda92bbdad3f0e680f4a32f5c8a2a1.zip | |
obligation forest docs
Diffstat (limited to 'compiler/rustc_trait_selection/src')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/fulfill.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/fulfill.rs b/compiler/rustc_trait_selection/src/traits/fulfill.rs index 1989184f48f..362d669f867 100644 --- a/compiler/rustc_trait_selection/src/traits/fulfill.rs +++ b/compiler/rustc_trait_selection/src/traits/fulfill.rs @@ -314,7 +314,7 @@ impl<'a, 'b, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'b, 'tcx> { return ProcessResult::Unchanged; } - self.progress_changed_obligations(pending_obligation) + self.process_changed_obligations(pending_obligation) } fn process_backedge<'c, I>( @@ -338,7 +338,7 @@ impl<'a, 'b, 'tcx> FulfillProcessor<'a, 'b, 'tcx> { // actually uses this, so move this part of the code // out of that loop. #[inline(never)] - fn progress_changed_obligations( + fn process_changed_obligations( &mut self, pending_obligation: &mut PendingPredicateObligation<'tcx>, ) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> { |
