Make remaining moves explicit in libstd

This commit is contained in:
Tim Chevalier
2012-09-10 17:50:48 -07:00
parent 73eb894305
commit 9869d071d1
18 changed files with 68 additions and 68 deletions

View File

@@ -541,7 +541,7 @@ fn from_fn(len: uint, f: fn(index: uint) -> bool) -> Bitv {
for uint::range(0, len) |i| {
bitv.set(i, f(i));
}
return bitv;
move bitv
}
const uint_bits: uint = 32u + (1u << 32u >> 27u);