mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 03:40:22 +00:00
Update comments
This commit is contained in:
parent
f1386ad894
commit
50e3fd0d9a
@ -496,9 +496,12 @@ const NameValuePairs g_nullNameValuePairs;
|
||||
// Sun Studio 12.3 and earlier can't handle NameValuePairs initialization
|
||||
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC < 0x5130)
|
||||
static const std::string DEFAULT_CHANNEL;
|
||||
static const std::string AAD_CHANNEL("AAD");
|
||||
static const std::string AAD_CHANNEL = "AAD";
|
||||
static const NameValuePairs& g_nullNameValuePairs = s_nullNameValuePairs;
|
||||
|
||||
// We don't really want static here since it detracts from public symbol visibility, but the Windows
|
||||
// DLL fails to compile when the symbols are only const. Apparently Microsoft compilers don't treat
|
||||
// const the same as static in a translation unit for visibility under C++.
|
||||
#else
|
||||
static const std::string DEFAULT_CHANNEL;
|
||||
static const std::string AAD_CHANNEL("AAD");
|
||||
|
Loading…
Reference in New Issue
Block a user