Remove stray debug print
This commit is contained in:
parent
ad2b9247b8
commit
fa43552c6f
|
|
@ -9,7 +9,6 @@ fn spread_bits(v: u32) -> u32 {
|
|||
for power in 0..9 {
|
||||
result |= ((1 << power) & v) << power * 2;
|
||||
}
|
||||
dbg!(format!("{:b}", result));
|
||||
result
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue