Skip to content

Commit 6efc404

Browse files
committed
Fix cfg(debug_assertions)
1 parent 3d9ce6c commit 6efc404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_query_impl/src/on_disk_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ impl<'a, 'tcx> Decodable<CacheDecoder<'a, 'tcx>> for ExpnId {
662662

663663
#[cfg(debug_assertions)]
664664
{
665-
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
665+
use rustc_data_structures::stable_hasher::StableHasher;
666666
let local_hash: u64 = decoder.tcx.with_stable_hashing_context(|mut hcx| {
667667
let mut hasher = StableHasher::new();
668668
expn_id.expn_data().hash_stable(&mut hcx, &mut hasher);

0 commit comments

Comments
 (0)