We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9047c57 + 44edbc0 commit 88573a7Copy full SHA for 88573a7
src/librustc/ich/impls_syntax.rs
@@ -12,13 +12,6 @@ use smallvec::SmallVec;
12
13
impl<'ctx> rustc_target::HashStableContext for StableHashingContext<'ctx> {}
14
15
-impl<'a> HashStable<StableHashingContext<'a>> for ast::Lifetime {
16
- fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
17
- self.id.hash_stable(hcx, hasher);
18
- self.ident.hash_stable(hcx, hasher);
19
- }
20
-}
21
-
22
impl<'a> HashStable<StableHashingContext<'a>> for [ast::Attribute] {
23
fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
24
if self.len() == 0 {
0 commit comments