Skip to content

Commit

Permalink
Reduce: Insert time by ref (#510)
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Hoffmann <antiguru@gmail.com>
  • Loading branch information
antiguru authored Jun 4, 2024
1 parent 56c62c8 commit 359d22c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operators/reduce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ where
// Determine the frontier of our interesting times.
let mut frontier = Antichain::<G::Timestamp>::new();
for (_, time) in &interesting {
frontier.insert(time.clone());
frontier.insert_ref(time);
}

// Update `capabilities` to reflect interesting pairs described by `frontier`.
Expand Down

0 comments on commit 359d22c

Please sign in to comment.