forked from organicmaps/organicmaps
Warning fix
This commit is contained in:
parent
67b27d0d9e
commit
0a55f28cc0
1 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue