Cleared warning on operator precedence

pull/1/merge
Jeffrey Walton 2015-06-29 09:46:48 -04:00
parent 457eaeaf23
commit bb0d9c7caf
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ Integer InvertibleESIGNFunction::CalculateRandomizedInverse(RandomNumberGenerato
w1 = pq - w1;
}
}
while ((w1 >> 2*GetK()+1).IsPositive());
while ((w1 >> (2*GetK()+1)).IsPositive());
ModularArithmetic modp(m_p);
Integer t = modp.Divide(w0 * r % m_p, m_e * re % m_p);