fix gcc 3.4.2 compile

pull/2/head
weidai 2004-10-17 22:39:30 +00:00
parent c39b3de3c4
commit 79e29d0de4
1 changed files with 1 additions and 1 deletions

View File

@ -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);