fix gcc 3.4.2 compile

import/raw
weidai 2004-10-17 22:39:30 +00:00
parent 0bb533d0e7
commit 81b45ff99e
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);