From f0f060bb8bcd86c0c231fd37dd1bcd0de8560d2d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 8 Jun 2016 16:22:47 -0400 Subject: [PATCH] Cleared warning 'extra ";" ignored' --- hkdf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hkdf.h b/hkdf.h index cd64fb39..62df33e4 100644 --- a/hkdf.h +++ b/hkdf.h @@ -29,8 +29,8 @@ template class HKDF : public KeyDerivationFunction { public: - CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE); - CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE); + CRYPTOPP_CONSTANT(DIGESTSIZE = T::DIGESTSIZE) + CRYPTOPP_CONSTANT(SALTSIZE = T::DIGESTSIZE) static const char* StaticAlgorithmName () { static const std::string name(std::string("HKDF(") + std::string(T::StaticAlgorithmName()) + std::string(")")); return name.c_str();