@@ -101,8 +101,8 @@ impl PartialEq<Symbol> for Path {
101
101
}
102
102
}
103
103
104
- impl < CTX : rustc_span:: HashStableContext > HashStable < CTX > for Path {
105
- fn hash_stable ( & self , hcx : & mut CTX , hasher : & mut StableHasher ) {
104
+ impl < Ctx : rustc_span:: HashStableContext > HashStable < Ctx > for Path {
105
+ fn hash_stable ( & self , hcx : & mut Ctx , hasher : & mut StableHasher ) {
106
106
self . segments . len ( ) . hash_stable ( hcx, hasher) ;
107
107
for segment in & self . segments {
108
108
segment. ident . hash_stable ( hcx, hasher) ;
@@ -1680,11 +1680,11 @@ impl AttrArgs {
1680
1680
}
1681
1681
}
1682
1682
1683
- impl < CTX > HashStable < CTX > for AttrArgs
1683
+ impl < Ctx > HashStable < Ctx > for AttrArgs
1684
1684
where
1685
- CTX : crate :: HashStableContext ,
1685
+ Ctx : crate :: HashStableContext ,
1686
1686
{
1687
- fn hash_stable ( & self , ctx : & mut CTX , hasher : & mut StableHasher ) {
1687
+ fn hash_stable ( & self , ctx : & mut Ctx , hasher : & mut StableHasher ) {
1688
1688
mem:: discriminant ( self ) . hash_stable ( ctx, hasher) ;
1689
1689
match self {
1690
1690
AttrArgs :: Empty => { }
@@ -1716,11 +1716,11 @@ impl DelimArgs {
1716
1716
}
1717
1717
}
1718
1718
1719
- impl < CTX > HashStable < CTX > for DelimArgs
1719
+ impl < Ctx > HashStable < Ctx > for DelimArgs
1720
1720
where
1721
- CTX : crate :: HashStableContext ,
1721
+ Ctx : crate :: HashStableContext ,
1722
1722
{
1723
- fn hash_stable ( & self , ctx : & mut CTX , hasher : & mut StableHasher ) {
1723
+ fn hash_stable ( & self , ctx : & mut Ctx , hasher : & mut StableHasher ) {
1724
1724
let DelimArgs { dspan, delim, tokens } = self ;
1725
1725
dspan. hash_stable ( ctx, hasher) ;
1726
1726
delim. hash_stable ( ctx, hasher) ;
0 commit comments