summaryrefslogtreecommitdiff
path: root/rw.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-02 21:25:39 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-02 21:25:39 -0400
commit1f0c35e6693db8350ebd99998dbbd23cf303e40d (patch)
tree26d4419b45f889503d4cce1b0b7ad9414f9c37f8 /rw.cpp
parentb2820c28d3bda5fcffb799598a45466772c4b559 (diff)
downloadcryptopp-git-1f0c35e6693db8350ebd99998dbbd23cf303e40d.tar.gz
Cleared initialization warning related to use of brackets
Diffstat (limited to 'rw.cpp')
-rw-r--r--rw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rw.cpp b/rw.cpp
index f573fc31..8e07f577 100644
--- a/rw.cpp
+++ b/rw.cpp
@@ -202,7 +202,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);