From 589c25264a3b15fae101962f8a8a334a03c90075 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 3 Oct 2019 19:40:53 -0400 Subject: Don't add semicolon to CRYPTOPP_CONSTANT abd DOCUMENTED_TYPEDEF (GH #889) This issue is a recurring issue. Let's try fixing it in the #define this time. --- rc2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rc2.h') diff --git a/rc2.h b/rc2.h index f7a0d4fb..ec0c03fa 100644 --- a/rc2.h +++ b/rc2.h @@ -17,8 +17,8 @@ NAMESPACE_BEGIN(CryptoPP) /// \since Crypto++ 3.0 struct RC2_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 128> { - CRYPTOPP_CONSTANT(DEFAULT_EFFECTIVE_KEYLENGTH = 1024) - CRYPTOPP_CONSTANT(MAX_EFFECTIVE_KEYLENGTH = 1024) + CRYPTOPP_CONSTANT(DEFAULT_EFFECTIVE_KEYLENGTH = 1024) ; + CRYPTOPP_CONSTANT(MAX_EFFECTIVE_KEYLENGTH = 1024) ; CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "RC2";} }; -- cgit v1.2.1