@@ -856,7 +856,7 @@ for traits::Vtable<'gcx, N> where N: HashStable<StableHashingContext<'gcx>> {
856
856
857
857
match self {
858
858
& VtableImpl ( ref table_impl) => table_impl. hash_stable ( hcx, hasher) ,
859
- & VtableDefaultImpl ( ref table_def_impl) => table_def_impl. hash_stable ( hcx, hasher) ,
859
+ & VtableAutoImpl ( ref table_def_impl) => table_def_impl. hash_stable ( hcx, hasher) ,
860
860
& VtableParam ( ref table_param) => table_param. hash_stable ( hcx, hasher) ,
861
861
& VtableObject ( ref table_obj) => table_obj. hash_stable ( hcx, hasher) ,
862
862
& VtableBuiltin ( ref table_builtin) => table_builtin. hash_stable ( hcx, hasher) ,
@@ -884,11 +884,11 @@ for traits::VtableImplData<'gcx, N> where N: HashStable<StableHashingContext<'gc
884
884
}
885
885
886
886
impl < ' gcx , N > HashStable < StableHashingContext < ' gcx > >
887
- for traits:: VtableDefaultImplData < N > where N : HashStable < StableHashingContext < ' gcx > > {
887
+ for traits:: VtableAutoImplData < N > where N : HashStable < StableHashingContext < ' gcx > > {
888
888
fn hash_stable < W : StableHasherResult > ( & self ,
889
889
hcx : & mut StableHashingContext < ' gcx > ,
890
890
hasher : & mut StableHasher < W > ) {
891
- let traits:: VtableDefaultImplData {
891
+ let traits:: VtableAutoImplData {
892
892
trait_def_id,
893
893
ref nested,
894
894
} = * self ;
0 commit comments