Skip to content

Commit 9825e47

Browse files
committed
Fixed clippy warning
1 parent ea756cb commit 9825e47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rusty_variant/src/bits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ fn f64_to_bits_for_normalized_value(
121121
// insert the significant bits
122122
for bit in int_bits
123123
.into_iter()
124-
.chain(fraction_bits.into_iter())
124+
.chain(fraction_bits)
125125
.take(DOUBLE_SIGNIFICANT_BITS)
126126
{
127127
bits.push(bit);

0 commit comments

Comments
 (0)