Cleared SunCC warning "c0 hides GF2NT::c0"

pull/280/head
Jeffrey Walton 2016-09-14 21:04:00 -04:00
parent 7c3345585c
commit 92ed8454c7
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ GF2NT::GF2NT(unsigned int c0, unsigned int c1, unsigned int c2)
, t0(c0), t1(c1) , t0(c0), t1(c1)
, result((word)0, m) , result((word)0, m)
{ {
assert(t0 > t1 && t1 > t2 && t2==0); assert(c0 > c1 && c1 > c2 && c2==0);
} }
const GF2NT::Element& GF2NT::MultiplicativeInverse(const Element &a) const const GF2NT::Element& GF2NT::MultiplicativeInverse(const Element &a) const