aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/infer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_ty/src/infer.rs')
-rw-r--r--crates/hir_ty/src/infer.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/hir_ty/src/infer.rs b/crates/hir_ty/src/infer.rs
index a137c0f92..f1cebbdb9 100644
--- a/crates/hir_ty/src/infer.rs
+++ b/crates/hir_ty/src/infer.rs
@@ -373,10 +373,6 @@ impl<'a> InferenceContext<'a> {
373 self.table.unify(ty1, ty2) 373 self.table.unify(ty1, ty2)
374 } 374 }
375 375
376 fn unify_inner(&mut self, ty1: &Ty, ty2: &Ty) -> InferResult {
377 self.table.unify_inner(ty1, ty2)
378 }
379
380 fn resolve_ty_shallow(&mut self, ty: &Ty) -> Ty { 376 fn resolve_ty_shallow(&mut self, ty: &Ty) -> Ty {
381 self.resolve_obligations_as_possible(); 377 self.resolve_obligations_as_possible();
382 self.table.resolve_ty_shallow(ty) 378 self.table.resolve_ty_shallow(ty)