Skip to content

Commit f976076

Browse files
committed
deref
Signed-off-by: Robert Kruszewski <[email protected]>
1 parent 4539101 commit f976076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-file/benches/bench_read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn make_test_array(len: usize) -> ArrayRef {
3232
.into_array();
3333
let float_value = (0..64).map(|v| v as f32 / 10f32).collect::<Vec<_>>();
3434
let floats = (0..len)
35-
.map(|i| float_value.iter().choose_stable(&mut rng).unwrap())
35+
.map(|i| *float_value.iter().choose_stable(&mut rng).unwrap())
3636
.collect::<Buffer<f32>>()
3737
.into_array();
3838

0 commit comments

Comments
 (0)