From f8c1348667efdc0dfc23f3fddbe3265e0abc7feb Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 1 May 2017 16:56:21 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20"There=20are=20no=20arguments=20to=20?= =?UTF-8?q?=E2=80=98GetAlgorithm=E2=80=99=20that=20depend=20on=20a=20templ?= =?UTF-8?q?ate=20parameter"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seckey.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }