libsnark: convert long long and unsigned long to C++11 fixed-width types
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
@@ -92,13 +92,13 @@ TEST(relations, qap)
|
||||
|
||||
enter_block("Test QAP with binary input");
|
||||
|
||||
test_qap<Fr<alt_bn128_pp> >(1ul << 21, num_inputs, true);
|
||||
test_qap<Fr<alt_bn128_pp> >(UINT64_C(1) << 21, num_inputs, true);
|
||||
|
||||
leave_block("Test QAP with binary input");
|
||||
|
||||
enter_block("Test QAP with field input");
|
||||
|
||||
test_qap<Fr<alt_bn128_pp> >(1ul << 21, num_inputs, false);
|
||||
test_qap<Fr<alt_bn128_pp> >(UINT64_C(1) << 21, num_inputs, false);
|
||||
|
||||
leave_block("Test QAP with field input");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user