fix gcc 3.4.2 compile
parent
0bb533d0e7
commit
81b45ff99e
|
|
@ -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