tidy: Remove extra semicolons

These were causing compilation warnings.
This commit is contained in:
Nick Fitzgerald
2019-09-19 09:46:22 -07:00
committed by Andrew Brown
parent 5c5eabb8d0
commit 9b8e7b511e
3 changed files with 3 additions and 3 deletions

View File

@@ -851,7 +851,7 @@ impl TypeSetBuilder {
pub fn build(self) -> TypeSet {
let min_lanes = if self.includes_scalars { 1 } else { 2 };
;
let bools = range_to_set(self.bools.to_range(1..MAX_BITS, None))
.into_iter()
.filter(legal_bool)