Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/next_solver/interner.rs')
-rw-r--r--crates/hir-ty/src/next_solver/interner.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/hir-ty/src/next_solver/interner.rs b/crates/hir-ty/src/next_solver/interner.rs
index ab6ce31256..a7216a034c 100644
--- a/crates/hir-ty/src/next_solver/interner.rs
+++ b/crates/hir-ty/src/next_solver/interner.rs
@@ -894,8 +894,8 @@ impl<'db> Interner for DbInterner<'db> {
type TraitAssocTyId = TraitAssocTyId;
type TraitAssocConstId = TraitAssocConstId;
type TraitAssocTermId = TraitAssocTermId;
- type OpaqueTyId = OpaqueTyIdWrapper;
- type LocalOpaqueTyId = OpaqueTyIdWrapper;
+ type OpaqueTyId = OpaqueTyIdWrapper<'db>;
+ type LocalOpaqueTyId = OpaqueTyIdWrapper<'db>;
type FreeTyAliasId = FreeTyAliasId;
type FreeConstAliasId = FreeConstAliasId;
type FreeTermAliasId = FreeTermAliasId;
@@ -2345,7 +2345,7 @@ TrivialTypeTraversalImpls! {
InherentAssocTyId,
InherentAssocConstId,
InherentAssocTermId,
- OpaqueTyIdWrapper,
+ OpaqueTyIdWrapper<'_>,
AnyImplId,
GeneralConstIdWrapper<'_>,
Safety,