Skip to content

Commit

Permalink
Merge pull request #18 from brmmm3/remove_unnecessary_clone
Browse files Browse the repository at this point in the history
Remove unnecessary clone.
  • Loading branch information
jessegrosjean authored Feb 26, 2020
2 parents f9a144b + 0f8b1c8 commit 898ff91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/ordered_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ where
receiver,
ordered_matcher: OrderedMatcher::default(),
receive_buffer: BinaryHeap::new(),
pending_count: pending_count.clone(),
stop: stop.clone(),
pending_count: pending_count,
stop: stop,
},
)
}
Expand Down

0 comments on commit 898ff91

Please sign in to comment.