diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-06 13:04:33 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-07 10:19:12 +1000 |
| commit | df8fe7dd34244b972cd9c4f7935fe8d6e1ea50db (patch) | |
| tree | db5ea636ac9ca002cc631b35a06c6619119674a9 /compiler/rustc_data_structures/src/fingerprint.rs | |
| parent | 9c9b568792ef20d8459c745345dd3e79b7c7fa8c (diff) | |
| download | rust-df8fe7dd34244b972cd9c4f7935fe8d6e1ea50db.tar.gz rust-df8fe7dd34244b972cd9c4f7935fe8d6e1ea50db.zip | |
Remove `macro_use` from `stable_hasher`.
Normal `use` items are nicer.
Diffstat (limited to 'compiler/rustc_data_structures/src/fingerprint.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/fingerprint.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/fingerprint.rs b/compiler/rustc_data_structures/src/fingerprint.rs index 9995c08345c..1bee159489d 100644 --- a/compiler/rustc_data_structures/src/fingerprint.rs +++ b/compiler/rustc_data_structures/src/fingerprint.rs @@ -1,3 +1,4 @@ +use crate::stable_hasher::impl_stable_traits_for_trivial_type; use crate::stable_hasher::{Hash64, StableHasher, StableHasherResult}; use rustc_serialize::{Decodable, Decoder, Encodable, Encoder}; use std::hash::{Hash, Hasher}; |
