diff options
author | Florian Diebold <[email protected]> | 2021-05-15 19:18:54 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2021-05-21 16:48:34 +0100 |
commit | 48c492af7ec8ff6af4fe2b38f83aa007c9f7f0b8 (patch) | |
tree | f534549b8dc12c89c93cf373b46f1e01563c279b /crates/hir | |
parent | b939a6dcacc0460f49781e922c979d235a52eeca (diff) |
Fix compilation of hir and ide crates
Diffstat (limited to 'crates/hir')
-rw-r--r-- | crates/hir/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index d443b124c..21b1a8e4a 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -2223,8 +2223,8 @@ impl Type { | |||
2223 | walk_type(db, self, &mut cb); | 2223 | walk_type(db, self, &mut cb); |
2224 | } | 2224 | } |
2225 | 2225 | ||
2226 | pub fn could_unify_with(&self, other: &Type) -> bool { | 2226 | pub fn could_unify_with(&self, db: &dyn HirDatabase, other: &Type) -> bool { |
2227 | could_unify(&self.ty, &other.ty) | 2227 | could_unify(db, self.env.clone(), &self.ty, &other.ty) |
2228 | } | 2228 | } |
2229 | } | 2229 | } |
2230 | 2230 | ||