Cleared SunCC warning "t0 hides GF2NT::t0"

pull/280/head
Jeffrey Walton 2016-09-14 20:59:46 -04:00
parent 875852fcbc
commit 7c3345585c
1 changed files with 3 additions and 3 deletions

View File

@ -595,9 +595,9 @@ GF2NP::Element GF2NP::SolveQuadraticEquation(const Element &a) const
// ******************************************************** // ********************************************************
GF2NT::GF2NT(unsigned int t0, unsigned int t1, unsigned int t2) GF2NT::GF2NT(unsigned int c0, unsigned int c1, unsigned int c2)
: GF2NP(PolynomialMod2::Trinomial(t0, t1, t2)) : GF2NP(PolynomialMod2::Trinomial(c0, c1, c2))
, t0(t0), t1(t1) , t0(c0), t1(c1)
, result((word)0, m) , result((word)0, m)
{ {
assert(t0 > t1 && t1 > t2 && t2==0); assert(t0 > t1 && t1 > t2 && t2==0);