mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Cleanup stray semicolons
I believe this is the last group from https://github.com/weidai11/cryptopp/issues/889
This commit is contained in:
parent
883dbce74a
commit
f2c0c2c5cb
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user