aboutsummaryrefslogtreecommitdiff
path: root/src/iter/filter_map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/iter/filter_map.rs')
-rw-r--r--src/iter/filter_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iter/filter_map.rs b/src/iter/filter_map.rs
index f19c385..db1c7e3 100644
--- a/src/iter/filter_map.rs
+++ b/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 {