Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
remove & from map
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuataylor committed Jun 24, 2022
1 parent 298b6f4 commit 73b2ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/ipc/read/stream.rs
Expand Up @@ -172,7 +172,7 @@ fn read_next<R: Read>(
if let Some((_, map, _)) = projection {
// re-order according to projection
chunk
.map(|chunk| apply_projection(chunk, &map))
.map(|chunk| apply_projection(chunk, map))
.map(|x| Some(StreamState::Some(x)))
} else {
chunk.map(|x| Some(StreamState::Some(x)))
Expand Down

0 comments on commit 73b2ab0

Please sign in to comment.