summaryrefslogtreecommitdiffstats
path: root/vendor/rayon/src/iter/filter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rayon/src/iter/filter.rs')
-rw-r--r--vendor/rayon/src/iter/filter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/rayon/src/iter/filter.rs b/vendor/rayon/src/iter/filter.rs
index 38627f7c0..e1b74ba52 100644
--- a/vendor/rayon/src/iter/filter.rs
+++ b/vendor/rayon/src/iter/filter.rs
@@ -97,7 +97,7 @@ where
P: Fn(&T) -> bool + Sync,
{
fn split_off_left(&self) -> Self {
- FilterConsumer::new(self.base.split_off_left(), &self.filter_op)
+ FilterConsumer::new(self.base.split_off_left(), self.filter_op)
}
fn to_reducer(&self) -> Self::Reducer {