File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
src/tools/rust-analyzer/crates/hir-ty/src/next_solver Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ impl<'db> Const<'db> {
36
36
internee : kind,
37
37
flags : flags. flags ,
38
38
outer_exclusive_binder : flags. outer_exclusive_binder ,
39
+ #[ cfg( feature = "in-rust-tree" ) ]
40
+ stable_hash : ena:: fingerprint:: Fingerprint :: ZERO ,
39
41
} ;
40
42
Const :: new_ ( interner. db ( ) , InternedWrapperNoDebug ( cached) )
41
43
}
Original file line number Diff line number Diff line change @@ -227,6 +227,8 @@ impl<'db> Predicate<'db> {
227
227
internee : kind,
228
228
flags : flags. flags ,
229
229
outer_exclusive_binder : flags. outer_exclusive_binder ,
230
+ #[ cfg( feature = "in-rust-tree" ) ]
231
+ stable_hash : ena:: fingerprint:: Fingerprint :: ZERO ,
230
232
} ;
231
233
Predicate :: new_ ( interner. db ( ) , InternedWrapperNoDebug ( cached) )
232
234
}
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ impl<'db> Ty<'db> {
60
60
internee : kind,
61
61
flags : flags. flags ,
62
62
outer_exclusive_binder : flags. outer_exclusive_binder ,
63
+ #[ cfg( feature = "in-rust-tree" ) ]
64
+ stable_hash : ena:: fingerprint:: Fingerprint :: ZERO ,
63
65
} ;
64
66
Ty :: new_ ( interner. db ( ) , InternedWrapperNoDebug ( cached) )
65
67
}
You can’t perform that action at this time.
0 commit comments