summaryrefslogtreecommitdiff
path: root/ecp.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-13 21:40:42 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-13 21:40:42 -0400
commite78b8fe1dff7acdb1a52f12de72f34dc33982901 (patch)
treeb04058dd954e5830f546423e0e869eb45577163d /ecp.cpp
parentb5ed163c87f0ef017058154820d710fb3780d8ec (diff)
downloadcryptopp-git-e78b8fe1dff7acdb1a52f12de72f34dc33982901.tar.gz
Cleared warnings on WindowSlider struct
Diffstat (limited to 'ecp.cpp')
-rw-r--r--ecp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ecp.cpp b/ecp.cpp
index 55a7cc15..b78d9e4f 100644
--- a/ecp.cpp
+++ b/ecp.cpp
@@ -395,7 +395,7 @@ void ECP::SimultaneousMultiply(ECP::Point *results, const ECP::Point &P, const I
bool baseAdded = false;
for (i=0; i<expCount; i++)
{
- if (!exponents[i].finished && expBitPosition == exponents[i].windowBegin)
+ if (!exponents[i].m_finished && expBitPosition == exponents[i].m_windowBegin)
{
if (!baseAdded)
{
@@ -403,13 +403,13 @@ void ECP::SimultaneousMultiply(ECP::Point *results, const ECP::Point &P, const I
baseAdded =true;
}
- exponentWindows[i].push_back(exponents[i].expWindow);
+ exponentWindows[i].push_back(exponents[i].m_expWindow);
baseIndices[i].push_back((word32)bases.size()-1);
- negateBase[i].push_back(exponents[i].negateNext);
+ negateBase[i].push_back(exponents[i].m_negateNext);
exponents[i].FindNextWindow();
}
- notDone = notDone || !exponents[i].finished;
+ notDone = notDone || !exponents[i].m_finished;
}
if (notDone)