Do not use wcout in console.

This commit is contained in:
vng 2012-02-07 00:35:49 +03:00 committed by Alex Zolotarev
parent 87dac6640a
commit 2ff43f26b7

View file

@ -139,7 +139,7 @@ namespace feature
{
if (it->second.first <= MIN_OCCURRENCE)
break;
wcout << it->second.first << " " << std::wstring(it->first.begin(), it->first.end());
cout << it->second.first << " " << strings::ToUtf8(it->first);
cout << " \"" << it->second.second << "\"" << endl;
}
}