Fix "There are no arguments to ‘GetAlgorithm’ that depend on a template parameter"

pull/416/head
Jeffrey Walton 2017-05-01 16:56:21 -04:00
parent a33a3435f4
commit f8c1348667
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}