summaryrefslogtreecommitdiff
path: root/seckey.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-01 16:56:21 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-01 16:56:21 -0400
commitf8c1348667efdc0dfc23f3fddbe3265e0abc7feb (patch)
tree54982fe3c458bc87331593884aa066ae10cb53c3 /seckey.h
parenta33a3435f405a13d7c18911f2ce323e6807dea80 (diff)
downloadcryptopp-git-f8c1348667efdc0dfc23f3fddbe3265e0abc7feb.tar.gz
Fix "There are no arguments to ‘GetAlgorithm’ that depend on a template parameter"
Diffstat (limited to 'seckey.h')
-rw-r--r--seckey.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/seckey.h b/seckey.h
index b400a229..dcf28fbe 100644
--- a/seckey.h
+++ b/seckey.h
@@ -451,7 +451,7 @@ public:
//! \returns the initialization vector length, in bytes
unsigned int IVSize() const {
if (!this->IsResynchronizable())
- throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");
+ throw NotImplemented(this->GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");
return m_blocksize ? m_blocksize : this->IV_LENGTH;
}