Remove unnecessary static qualifier from const string

This commit is contained in:
Andrew Schwartzmeyer 2015-07-22 16:36:06 -07:00
parent b36cdcdc12
commit 865fd0a56b

View file

@ -24,7 +24,7 @@
// 0 - failed
BOOL GetUserName(WCHAR_T *lpBuffer, LPDWORD lpnSize)
{
static const std::string utf8 = "UTF-8";
const std::string utf8 = "UTF-8";
errno = 0;