diff options
author | Florian Diebold <[email protected]> | 2021-04-03 16:40:56 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2021-04-08 13:08:54 +0100 |
commit | 77d974ae6b73f8b733f12e18d220fa8c4fc1ee38 (patch) | |
tree | 0003a7571759bd3db294c497af18870c6692679b /crates/hir_ty/src/walk.rs | |
parent | 855a739ebf736db8a9a66e0e073c34631275fb22 (diff) |
Replace all the types by their Chalk versions
Diffstat (limited to 'crates/hir_ty/src/walk.rs')
-rw-r--r-- | crates/hir_ty/src/walk.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/walk.rs b/crates/hir_ty/src/walk.rs index 91116dcda..873d563c0 100644 --- a/crates/hir_ty/src/walk.rs +++ b/crates/hir_ty/src/walk.rs | |||
@@ -408,7 +408,7 @@ impl TypeWalk for AliasEq { | |||
408 | } | 408 | } |
409 | } | 409 | } |
410 | 410 | ||
411 | impl TypeWalk for FnSubst { | 411 | impl TypeWalk for FnSubst<Interner> { |
412 | fn walk(&self, f: &mut impl FnMut(&Ty)) { | 412 | fn walk(&self, f: &mut impl FnMut(&Ty)) { |
413 | self.0.walk(f) | 413 | self.0.walk(f) |
414 | } | 414 | } |