*** empty log message ***

This commit is contained in:
Arvid Norberg 2005-06-20 23:15:24 +00:00
parent 9a92b08be0
commit 718cc17f74
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static std::wstring utf8_wchar(const std::string &str) {
return ret;
}
static std::string wchar_utf8(const std::wstring &wide, std::string &utf8) {
static void wchar_utf8(const std::wstring &wide, std::string &utf8) {
utf8.clear();
detail::wchar_utf8(wide.begin(), wide.end(), std::insert_iterator<std::string>(utf8, utf8.end()));
}