summaryrefslogtreecommitdiffstats
path: root/vendor/rayon/src/iter/filter_map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rayon/src/iter/filter_map.rs')
-rw-r--r--vendor/rayon/src/iter/filter_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/rayon/src/iter/filter_map.rs b/vendor/rayon/src/iter/filter_map.rs
index f19c38563..db1c7e3f0 100644
--- a/vendor/rayon/src/iter/filter_map.rs
+++ b/vendor/rayon/src/iter/filter_map.rs
@@ -98,7 +98,7 @@ where
P: Fn(T) -> Option<U> + Sync + 'p,
{
fn split_off_left(&self) -> Self {
- FilterMapConsumer::new(self.base.split_off_left(), &self.filter_op)
+ FilterMapConsumer::new(self.base.split_off_left(), self.filter_op)
}
fn to_reducer(&self) -> Self::Reducer {