bitfield: change `[0;n]` to `[0].repeat(n)`
parent
6edc25f512
commit
c1eb714a7f
|
@ -112,7 +112,7 @@ pub fn new(size int) BitField {
|
||||||
output := BitField{
|
output := BitField{
|
||||||
size: size
|
size: size
|
||||||
//field: *u32(calloc(bitnslots(size) * SLOT_SIZE / 8))
|
//field: *u32(calloc(bitnslots(size) * SLOT_SIZE / 8))
|
||||||
field: [u32(0); bitnslots(size)]
|
field: [u32(0)].repeat(bitnslots(size))
|
||||||
}
|
}
|
||||||
return output
|
return output
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue