diff options
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/numbertheory/curve_gfp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/math/numbertheory/curve_gfp.h b/src/math/numbertheory/curve_gfp.h index 8a46a9735..3609ffd9d 100644 --- a/src/math/numbertheory/curve_gfp.h +++ b/src/math/numbertheory/curve_gfp.h @@ -33,8 +33,9 @@ class BOTAN_DLL CurveGFp * @param a first coefficient * @param b second coefficient */ - CurveGFp(const BigInt& p, const BigInt& a, const BigInt& b) : - p(p), a(a), b(b), reducer_p(p) + CurveGFp(const BigInt& p_in, + const BigInt& a_in, const BigInt& b_in) : + p(p_in), a(a_in), b(b_in), reducer_p(p) { r = 1; r <<= p.sig_words() * BOTAN_MP_WORD_BITS; |