From f2c0c2c5cbf38447c1a69cf459d92ff9ef90ffd9 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 3 Oct 2019 22:08:51 -0400 Subject: Cleanup stray semicolons I believe this is the last group from https://github.com/weidai11/cryptopp/issues/889 --- config_misc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'config_misc.h') diff --git a/config_misc.h b/config_misc.h index 50e123f9..54bf3104 100644 --- a/config_misc.h +++ b/config_misc.h @@ -145,13 +145,13 @@ #endif // CRYPTOPP_CXX11_CONSTEXPR #if defined(CRYPTOPP_DOXYGEN_PROCESSING) -# define CRYPTOPP_CONSTANT(x) static const int x ; +# define CRYPTOPP_CONSTANT(x) static const int x #elif defined(CRYPTOPP_CXX11_ENUM) -# define CRYPTOPP_CONSTANT(x) enum : int { x } ; +# define CRYPTOPP_CONSTANT(x) enum : int { x } #elif defined(CRYPTOPP_CXX11_CONSTEXPR) -# define CRYPTOPP_CONSTANT(x) constexpr static int x ; +# define CRYPTOPP_CONSTANT(x) constexpr static int x #else -# define CRYPTOPP_CONSTANT(x) static const int x ; +# define CRYPTOPP_CONSTANT(x) static const int x #endif // Warnings -- cgit v1.2.1