Здравствуйте
std::wifstream wif("C:\\cpp\\permission.txt", std::ios::binary);
if (wif.is_open())
{
static std::locale empty ();
wif.imbue(std::locale(std::locale::empty(), new std::codecvt_utf8<wchar_t,0x10ffff, std::consume_header>));
std::wstring wline;
while (std::getline(wif, wline))
{
LPCWSTR wline = wline;
MessageBoxW(FindWindowW(NULL, L"Корзина"), NULL, wline, MB_YESNO);
}
wif.close();
}
Компилятор выдает ошибку "empty is not a member of std::locale"
Все нужные заголовочные файлы подключены