Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed May 17, 2024
1 parent f080574 commit 37358d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/turbo-tasks-memory/src/aggregation/new_edge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ const MAX_AFFECTED_NODES: usize = 4096;

/// Handle the addition of a new edge to a node. The the edge is propagated to
/// the uppers of that node or added a inner node.
pub fn handle_new_edge<'l, C: AggregationContext>(
pub fn handle_new_edge<C: AggregationContext>(
ctx: &C,
origin: &mut C::Guard<'l>,
origin: &mut C::Guard<'_>,
origin_id: &C::NodeRef,
target_id: &C::NodeRef,
number_of_children: usize,
Expand Down

0 comments on commit 37358d6

Please sign in to comment.