From 92ed8454c754ac1112690039c3b2070a03738327 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 14 Sep 2016 21:04:00 -0400 Subject: [PATCH] Cleared SunCC warning "c0 hides GF2NT::c0" --- gf2n.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gf2n.cpp b/gf2n.cpp index 52ff9b67..7c78fafd 100644 --- a/gf2n.cpp +++ b/gf2n.cpp @@ -600,7 +600,7 @@ GF2NT::GF2NT(unsigned int c0, unsigned int c1, unsigned int c2) , t0(c0), t1(c1) , 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