Skip to content

Commit 0fc378a

Browse files
committed
Manually implement a more general HashStable for RustcVersion
1 parent b7debe3 commit 0fc378a

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

compiler/rustc_attr/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ pub use StabilityLevel::*;
2727

2828
pub use rustc_ast::attr::*;
2929

30-
pub(crate) use rustc_session::HashStableContext;
30+
pub(crate) use rustc_ast::HashStableContext;
3131

3232
fluent_messages! { "../messages.ftl" }

compiler/rustc_session/src/version.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
12
use std::fmt::{self, Display};
23

34
#[derive(Encodable, Decodable, Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
4-
#[derive(HashStable_Generic)]
5+
//#[derive(HashStable_Generic)]
56
pub struct RustcVersion {
67
pub major: u16,
78
pub minor: u16,
@@ -17,3 +18,16 @@ impl Display for RustcVersion {
1718
write!(formatter, "{}.{}.{}", self.major, self.minor, self.patch)
1819
}
1920
}
21+
22+
// Handwritten because #[derive(HashStable_Generic)] would generate a stricter
23+
// `Ctx: rustc_session::HashStableContext` bound.
24+
impl<Ctx> HashStable<Ctx> for RustcVersion
25+
where
26+
Ctx: rustc_ast::HashStableContext,
27+
{
28+
fn hash_stable(&self, hcx: &mut Ctx, hasher: &mut StableHasher) {
29+
self.major.hash_stable(hcx, hasher);
30+
self.minor.hash_stable(hcx, hasher);
31+
self.patch.hash_stable(hcx, hasher);
32+
}
33+
}

0 commit comments

Comments
 (0)