diff options
author | lloyd <[email protected]> | 2010-09-07 19:32:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-07 19:32:17 +0000 |
commit | 93950b744b55b004050b7f2c36a81e33fce5c5e7 (patch) | |
tree | 2eb2fead99830c485623f93b15810cf3a254e509 /src/math | |
parent | ae945f66fea0c12d886a1f0a04477156e9733222 (diff) |
Avoid name clashing, Sun Studio doesn't like this
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; |