Update comments

This commit is contained in:
Jeffrey Walton 2017-11-13 14:28:16 -05:00
parent f1386ad894
commit 50e3fd0d9a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -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");