This commit is contained in:
artemp 2015-08-27 11:56:11 +02:00
parent bd35054d27
commit 0ea5ccc7bc

View File

@ -39,7 +39,7 @@ transcoder::transcoder (std::string const& encoding)
conv_ = ucnv_open(encoding.c_str(),&err);
if (!U_SUCCESS(err))
{
// NOT: conv_ should be null on error so no need to call ucnv_close
// NOTE: conv_ should be null on error so no need to call ucnv_close
throw std::runtime_error(std::string("could not create converter for ") + encoding);
}
}