Get rid of an unused variable

This commit is contained in:
Tim Chevalier 2011-06-30 09:00:26 -07:00
parent 4519f54857
commit a0cdb23892
1 changed files with 0 additions and 1 deletions

View File

@ -126,7 +126,6 @@ fn set(&t v, uint i, bool x) {
auto bits = uint_bits();
auto w = i / bits;
auto b = i % bits;
auto w0 = v.storage.(w);
auto flag = 1u << b;
v.storage.(w) =
if (x) { v.storage.(w) | flag } else { v.storage.(w) & !flag };