Skip to content

Commit 0d1b79a

Browse files
committed
Finish DefaultImpl -> AutoImpl rename.
Forgot this ones.
1 parent acf50ee commit 0d1b79a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc/ich/impls_ty.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ for traits::Vtable<'gcx, N> where N: HashStable<StableHashingContext<'gcx>> {
856856

857857
match self {
858858
&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),
860860
&VtableParam(ref table_param) => table_param.hash_stable(hcx, hasher),
861861
&VtableObject(ref table_obj) => table_obj.hash_stable(hcx, hasher),
862862
&VtableBuiltin(ref table_builtin) => table_builtin.hash_stable(hcx, hasher),
@@ -884,11 +884,11 @@ for traits::VtableImplData<'gcx, N> where N: HashStable<StableHashingContext<'gc
884884
}
885885

886886
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>> {
888888
fn hash_stable<W: StableHasherResult>(&self,
889889
hcx: &mut StableHashingContext<'gcx>,
890890
hasher: &mut StableHasher<W>) {
891-
let traits::VtableDefaultImplData {
891+
let traits::VtableAutoImplData {
892892
trait_def_id,
893893
ref nested,
894894
} = *self;

0 commit comments

Comments
 (0)