]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_incremental/persist/preds.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / librustc_incremental / persist / preds.rs
index af13484e4288d54174ee0763d4beb44717cebd27..fe1d627253f286a16c455bae6450be9dfb5cbdfe 100644 (file)
@@ -14,6 +14,7 @@ use rustc_data_structures::fnv::FnvHashMap;
 use rustc_data_structures::graph::{DepthFirstTraversal, INCOMING, NodeIndex};
 
 use super::hash::*;
+use ich::Fingerprint;
 
 /// A data-structure that makes it easy to enumerate the hashable
 /// predecessors of any given dep-node.
@@ -26,7 +27,7 @@ pub struct Predecessors<'query> {
 
     // - Keys: some hashable node
     // - Values: the hash thereof
-    pub hashes: FnvHashMap<&'query DepNode<DefId>, u64>,
+    pub hashes: FnvHashMap<&'query DepNode<DefId>, Fingerprint>,
 }
 
 impl<'q> Predecessors<'q> {