Skip to content

Commit

Permalink
explicit type for cache value
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Feb 4, 2023
1 parent c701a81 commit d6475cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskchampion/taskchampion/src/replica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit d6475cc

Please sign in to comment.