From 81b45ff99ec54a3d7c4527494affdac9e410027f Mon Sep 17 00:00:00 2001 From: weidai Date: Sun, 17 Oct 2004 22:39:30 +0000 Subject: [PATCH] fix gcc 3.4.2 compile --- trunk/c5/iterhash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/c5/iterhash.cpp b/trunk/c5/iterhash.cpp index 3e01556f..877007e9 100644 --- a/trunk/c5/iterhash.cpp +++ b/trunk/c5/iterhash.cpp @@ -13,7 +13,7 @@ template void IteratedHashBase::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);