summaryrefslogtreecommitdiff
path: root/modes.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2008-11-21 03:05:32 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2008-11-21 03:05:32 +0000
commit260b002fc017c4bf24ec72c4739d11babe9e1a99 (patch)
tree1b3cabd0bc88d30dc744786c7212761df853a716 /modes.h
parentfed5890194f50d587a9dc57f20d89e3369af125a (diff)
downloadcryptopp-260b002fc017c4bf24ec72c4739d11babe9e1a99.tar.gz
fixes for GCC 4.3.2 (reports from Chris Morgan and DiegoT)
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@422 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'modes.h')
-rw-r--r--modes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modes.h b/modes.h
index d6822ff..1bf36ae 100644
--- a/modes.h
+++ b/modes.h
@@ -308,12 +308,12 @@ class CipherModeFinalTemplate_ExternalCipher : public BASE
public:
CipherModeFinalTemplate_ExternalCipher() {}
CipherModeFinalTemplate_ExternalCipher(BlockCipher &cipher)
- {SetCipher(cipher);}
+ {this->SetCipher(cipher);}
CipherModeFinalTemplate_ExternalCipher(BlockCipher &cipher, const byte *iv, int feedbackSize = 0)
- {SetCipherWithIV(cipher, iv, feedbackSize);}
+ {this->SetCipherWithIV(cipher, iv, feedbackSize);}
std::string AlgorithmName() const
- {return m_cipher->AlgorithmName() + "/" + BASE::StaticAlgorithmName();}
+ {return this->m_cipher->AlgorithmName() + "/" + BASE::StaticAlgorithmName();}
};
CRYPTOPP_DLL_TEMPLATE_CLASS CFB_CipherTemplate<AbstractPolicyHolder<CFB_CipherAbstractPolicy, CFB_ModePolicy> >;