Ce code se compile avec Visual C++ 11 et s'exécute comme prévu sous Windows 7, mais ne se compile pas avec MinGW 4.7.0 sous Windows 7 ou gcc 4.8.0 sous Linux. Compilation avec -std=c++11
drapeau
#include <codecvt>
#include <string>
// convert UTF-8 string to wstring
std::wstring utf8_to_wstring (const std::string& str)
{
std::wstring_convert<std::codecvt_utf8<wchar_t>> myconv;
return myconv.from_bytes(str);
}
// convert wstring to UTF-8 string
std::string wstring_to_utf8 (const std::wstring& str)
{
std::wstring_convert<std::codecvt_utf8<wchar_t>> myconv;
return myconv.to_bytes(str);
}
Erreur :
codecvt : No such file or directory.