Remove unnecessary feature guard flag guard.

This commit is contained in:
Sean Bowe 2019-11-14 10:55:16 -07:00
parent ec841d3200
commit 6dfe4a4129
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ use core::ops::{Add, AddAssign, Mul, MulAssign, Neg, Sub, SubAssign};
use subtle::{Choice, ConditionallySelectable, ConstantTimeEq};
#[cfg(all(feature = "pairings", feature = "alloc"))]
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
/// Represents results of a Miller loop, one of the most expensive portions
@ -219,7 +219,7 @@ impl<'a, 'b> Mul<&'b Scalar> for &'a Gt {
impl_binops_additive!(Gt, Gt);
impl_binops_multiplicative!(Gt, Scalar);
#[cfg(all(feature = "pairings", feature = "alloc"))]
#[cfg(feature = "alloc")]
#[derive(Clone, Debug)]
/// This structure contains cached computations pertaining to a $\mathbb{G}_2$
/// element as part of the pairing function (specifically, the Miller loop) and
@ -235,7 +235,7 @@ pub struct G2Prepared {
coeffs: Vec<(Fp2, Fp2, Fp2)>,
}
#[cfg(all(feature = "pairings", feature = "alloc"))]
#[cfg(feature = "alloc")]
impl From<G2Affine> for G2Prepared {
fn from(q: G2Affine) -> G2Prepared {
struct Adder {
@ -286,7 +286,7 @@ impl From<G2Affine> for G2Prepared {
}
}
#[cfg(all(feature = "pairings", feature = "alloc"))]
#[cfg(feature = "alloc")]
/// Computes $$\sum_{i=1}^n \textbf{ML}(a_i, b_i)$$ given a series of terms
/// $$(a_1, b_1), (a_2, b_2), ..., (a_n, b_n).$$
///
@ -544,7 +544,7 @@ fn test_unitary() {
assert_eq!(q, r);
}
#[cfg(all(feature = "pairings", feature = "alloc"))]
#[cfg(feature = "alloc")]
#[test]
fn test_multi_miller_loop() {
let a1 = G1Affine::generator();