Cleared "local variable is initialized but not referenced" under VS2015

pull/131/merge
Jeffrey Walton 2016-09-06 08:59:31 -04:00
parent 9205efda02
commit 59aad798eb
1 changed files with 1 additions and 1 deletions

2
rw.cpp
View File

@ -207,7 +207,7 @@ Integer InvertibleRWFunction::CalculateInverse(RandomNumberGenerator &rng, const
Integer re = modn.Square(r);
re = modn.Multiply(re, x); // blind
const Integer &h = re, &p = m_p, &q = m_q, &n = m_n;
const Integer &h = re, &p = m_p, &q = m_q;
Integer e, f;
const Integer U = modq.Exponentiate(h, (q+1)/8);