Fix build warnings

This commit is contained in:
Taylor Hornby
2019-04-10 14:18:52 -06:00
committed by Jack Grigg
parent e391594e9e
commit caab37c336
2 changed files with 7 additions and 19 deletions

View File

@@ -274,7 +274,7 @@ mod test {
"2112827187110048608327330788910224944044097981650120385961435904443901436107",
];
for length in 300..302 {
let mut input: Vec<bool> = (0..length).map(|_| rng.next_u32() % 2 != 0).collect();
let input: Vec<bool> = (0..length).map(|_| rng.next_u32() % 2 != 0).collect();
let mut cs = TestConstraintSystem::<Bls12>::new();