Remove unnecessary parentheses.

This commit is contained in:
Huon Wilson 2014-01-19 19:21:14 +11:00
parent 3901228811
commit 39713b8295
47 changed files with 90 additions and 98 deletions

View file

@ -518,7 +518,7 @@ mod bench {
let mut sum = 0u64;
bh.iter(|| {
let mut i = $start_index;
while (i < data.len()) {
while i < data.len() {
sum += u64_from_be_bytes(data, i, $size);
i += $stride;
}