explicit type for cache value

This commit is contained in:
Dustin J. Mitchell 2023-02-04 00:44:21 +00:00 committed by Dustin J. Mitchell
parent c701a81699
commit d6475cc096

View file

@ -122,7 +122,7 @@ impl Replica {
let mut dm = DependencyMap::new();
// temporary cache tracking whether tasks are considered Pending or not.
let mut is_pending_cache = HashMap::new();
let mut is_pending_cache: HashMap<Uuid, bool> = HashMap::new();
let ws = self.working_set()?;
// for each task in the working set
for i in 1..=ws.largest_index() {