Replace uses of 'unchecked' with 'unsafe'

This commit is contained in:
Brian Anderson 2012-09-18 11:17:40 -07:00
parent efa6675f1d
commit 2cdb23bbc0
21 changed files with 107 additions and 107 deletions

View file

@ -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;
}