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