mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Fix Doxygen constant documentation
This commit is contained in:
parent
08c37e5887
commit
c5c6a6af5c
6
config.h
6
config.h
@ -535,7 +535,11 @@ NAMESPACE_END
|
||||
//#else
|
||||
//# define CRYPTOPP_CONSTANT(x) static const int x;
|
||||
//#endif
|
||||
#define CRYPTOPP_CONSTANT(x) enum {x};
|
||||
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)
|
||||
# define CRYPTOPP_CONSTANT(x) static const int x;
|
||||
#else
|
||||
# define CRYPTOPP_CONSTANT(x) enum {x};
|
||||
#endif
|
||||
|
||||
// Linux provides X32, which is 32-bit integers, longs and pointers on x86_64 using the full x86_64 register set.
|
||||
// Detect via __ILP32__ (http://wiki.debian.org/X32Port). However, __ILP32__ shows up in more places than
|
||||
|
Loading…
Reference in New Issue
Block a user