From 93950b744b55b004050b7f2c36a81e33fce5c5e7 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 7 Sep 2010 19:32:17 +0000 Subject: Avoid name clashing, Sun Studio doesn't like this --- src/math/numbertheory/curve_gfp.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/math') 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; -- cgit v1.2.3