From f19b23d5b5ce33b650672e2ca52a45f0e1d74187 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 5 Sep 2017 16:50:23 -0400 Subject: [PATCH] Clear GCC warnings with -Wall -Wextra --- seckey.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/seckey.h b/seckey.h index 1b1512b3..088bf754 100644 --- a/seckey.h +++ b/seckey.h @@ -474,7 +474,8 @@ public: //! Provides the block size of the algorithm //! \returns the block size, in bytes unsigned int BlockSize() const { - return m_blocksize ? m_blocksize : this->DEFAULT_BLOCKSIZE; + return m_blocksize ? m_blocksize : + static_cast(this->DEFAULT_BLOCKSIZE); } //! Provides the initialization vector length of the algorithm @@ -482,7 +483,8 @@ public: unsigned int IVSize() const { if (!this->IsResynchronizable()) throw NotImplemented(this->GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization"); - return m_ivlength ? m_ivlength : this->IV_LENGTH; + return m_ivlength ? m_ivlength : + static_cast(this->IV_LENGTH); } protected: