Warning fix

This commit is contained in:
Alex Zolotarev 2011-10-08 16:04:32 +03:00 committed by Alex Zolotarev
parent 67b27d0d9e
commit 0a55f28cc0

View file

@ -38,8 +38,10 @@ namespace languages
static void SetPreferableLanguages(vector<string> const & langCodes)
{
CHECK_EQUAL(langCodes.size(), MAX_SUPPORTED_LANGUAGES, ());
for (size_t i = 0; i < langCodes.size(); ++i)
size_t const size = langCodes.size();
CHECK_EQUAL(size, MAX_SUPPORTED_LANGUAGES, ());
CHECK_EQUAL(size, static_cast<int8_t>(size), ());
for (int8_t i = 0; i < static_cast<int8_t>(size); ++i)
{
int8_t const index = StringUtf8Multilang::GetLangIndex(langCodes[i]);
if (index >= 0)