explicit type for cache value
This commit is contained in:
committed by
Dustin J. Mitchell
parent
c701a81699
commit
d6475cc096
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user