Clear "x" might be used before it is set using IBM XLC

pull/748/head
Jeffrey Walton 2018-11-21 20:15:00 -05:00
parent 5492101fc0
commit be437504c7
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ PolynomialMod2 PolynomialMod2::Modulo(const PolynomialMod2 &b) const
PolynomialMod2& PolynomialMod2::operator<<=(unsigned int n)
{
#if defined(CRYPTOPP_DEBUG)
int x; CRYPTOPP_UNUSED(x);
int x=0; CRYPTOPP_UNUSED(x);
CRYPTOPP_ASSERT(SafeConvert(n,x));
#endif