Fix Doxygen constant documentation
parent
08c37e5887
commit
c5c6a6af5c
6
config.h
6
config.h
|
|
@ -535,7 +535,11 @@ NAMESPACE_END
|
||||||
//#else
|
//#else
|
||||||
//# define CRYPTOPP_CONSTANT(x) static const int x;
|
//# define CRYPTOPP_CONSTANT(x) static const int x;
|
||||||
//#endif
|
//#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.
|
// 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
|
// Detect via __ILP32__ (http://wiki.debian.org/X32Port). However, __ILP32__ shows up in more places than
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue