We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9f120 commit 32603baCopy full SHA for 32603ba
crates/hir-ty/src/infer.rs
@@ -673,10 +673,6 @@ impl<'a> InferenceContext<'a> {
673
)
674
}
675
676
- fn resolve_obligations_as_possible(&mut self) {
677
- self.table.resolve_obligations_as_possible();
678
- }
679
-
680
fn push_obligation(&mut self, o: DomainGoal) {
681
self.table.register_obligation(o.cast(Interner));
682
@@ -696,7 +692,6 @@ impl<'a> InferenceContext<'a> {
696
692
697
693
698
694
fn resolve_ty_shallow(&mut self, ty: &Ty) -> Ty {
699
- self.resolve_obligations_as_possible();
700
695
self.table.resolve_ty_shallow(ty)
701
702
0 commit comments