mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
explicit type for cache value
This commit is contained in:
parent
c701a81699
commit
d6475cc096
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue