summaryrefslogtreecommitdiff
path: root/iterhash.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-10-17 22:39:30 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-10-17 22:39:30 +0000
commit4b85e6cac0d84aaf65d0695adb137ae956e4e241 (patch)
tree8e8338ae8935f03cd26611428817c68ba2e912f0 /iterhash.cpp
parent65ea2d1cb9f91b81127142551d0f4098583ede73 (diff)
downloadcryptopp-4b85e6cac0d84aaf65d0695adb137ae956e4e241.tar.gz
fix gcc 3.4.2 compile
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@194 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'iterhash.cpp')
-rw-r--r--iterhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/iterhash.cpp b/iterhash.cpp
index 3e01556..877007e 100644
--- a/iterhash.cpp
+++ b/iterhash.cpp
@@ -13,7 +13,7 @@ template <class T, class BASE> void IteratedHashBase<T, BASE>::Update(const byte
m_countHi++; // carry from low to high
m_countHi += SafeRightShift<8*sizeof(HashWordType)>(len);
if (m_countHi < oldCountHi)
- throw HashInputTooLong(AlgorithmName());
+ throw HashInputTooLong(this->AlgorithmName());
unsigned int blockSize = BlockSize();
unsigned int num = ModPowerOf2(oldCountLo, blockSize);