Replace uses of 'unchecked' with 'unsafe'
This commit is contained in:
parent
efa6675f1d
commit
2cdb23bbc0
21 changed files with 107 additions and 107 deletions
|
|
@ -127,7 +127,7 @@ impl BigBitv {
|
|||
let w0 = self.storage[i] & mask;
|
||||
let w1 = b.storage[i] & mask;
|
||||
let w = op(w0, w1) & mask;
|
||||
if w0 != w unchecked {
|
||||
if w0 != w unsafe {
|
||||
changed = true;
|
||||
self.storage[i] = w;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue