fix gcc 3.4.2 compile
parent
c39b3de3c4
commit
79e29d0de4
|
|
@ -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++; // carry from low to high
|
||||||
m_countHi += SafeRightShift<8*sizeof(HashWordType)>(len);
|
m_countHi += SafeRightShift<8*sizeof(HashWordType)>(len);
|
||||||
if (m_countHi < oldCountHi)
|
if (m_countHi < oldCountHi)
|
||||||
throw HashInputTooLong(AlgorithmName());
|
throw HashInputTooLong(this->AlgorithmName());
|
||||||
|
|
||||||
unsigned int blockSize = BlockSize();
|
unsigned int blockSize = BlockSize();
|
||||||
unsigned int num = ModPowerOf2(oldCountLo, blockSize);
|
unsigned int num = ModPowerOf2(oldCountLo, blockSize);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue