diff options
author | lloyd <[email protected]> | 2010-11-02 12:33:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-11-02 12:33:16 +0000 |
commit | 4a361f699573ed3ff128ecc9c654863cd55aaa79 (patch) | |
tree | 4e8d4a29abdc937b5dce2c363519429f949e06be /src/math | |
parent | 05edb9f3e52ce18d0833d612fcfebf1442f859ea (diff) |
Doxygen
Diffstat (limited to 'src/math')
-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; |