Cleanup stray semicolons

I believe this is the last group from https://github.com/weidai11/cryptopp/issues/889
This commit is contained in:
Jeffrey Walton 2019-10-03 22:08:51 -04:00
parent 883dbce74a
commit f2c0c2c5cb
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -56,7 +56,6 @@ namespace CryptoPP { }
#define NAMESPACE_BEGIN(x) namespace x {
#define NAMESPACE_END }
#define DOCUMENTED_TYPEDEF(x, y) typedef x y
;
#endif // CRYPTOPP_DOXYGEN_PROCESSING