Update comments
parent
f1386ad894
commit
50e3fd0d9a
|
|
@ -496,9 +496,12 @@ const NameValuePairs g_nullNameValuePairs;
|
||||||
// Sun Studio 12.3 and earlier can't handle NameValuePairs initialization
|
// Sun Studio 12.3 and earlier can't handle NameValuePairs initialization
|
||||||
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC < 0x5130)
|
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC < 0x5130)
|
||||||
static const std::string DEFAULT_CHANNEL;
|
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;
|
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
|
#else
|
||||||
static const std::string DEFAULT_CHANNEL;
|
static const std::string DEFAULT_CHANNEL;
|
||||||
static const std::string AAD_CHANNEL("AAD");
|
static const std::string AAD_CHANNEL("AAD");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue