libxerces-cが勝手にlocaleを読み込んで勝手なことをしてくれていた件

前に随分困っていたのがまた再発した。とりあえずは回避したけど、本質的な解決はまだ。で、ググったらやっぱりこの辺にヒントがありそうだ。

>int main() { 
> XMLPlatformUtils::Initialize(); 
> std::locale::global(std::locale("japanese")); 
> std::cout << XMLString::transcode(L"だめなんすか") << std::endl;
> XMLPlatformUtils::Terminate(); 
> return 0; 
>}