summaryrefslogtreecommitdiff
path: root/ecp.cpp
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-07-14 01:32:08 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-07-14 01:32:08 +0000
commit47e5a4d4ea89c7f236bfc55df01c052efc3059e1 (patch)
tree8fc052e5d7918e8593e0e4953003bf2d2d4a91dc /ecp.cpp
parent22a3c574c278f6d4b861e7506b73240aa2829d01 (diff)
downloadcryptopp-47e5a4d4ea89c7f236bfc55df01c052efc3059e1.tar.gz
Cleared warnings on WindowSlider struct
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@582 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 55a7cc1..b78d9e4 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)