issue #4660: A warning fix in CCFontAtlas.cpp

This commit is contained in:
James Chen 2014-05-08 21:06:32 +08:00
parent 07204a0602
commit 3a30adde0f
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ bool FontAtlas::prepareLetterDefinitions(const std::u16string& utf16String)
float startY = _currentPageOrigY;
for (int i = 0; i < length; ++i)
for (size_t i = 0; i < length; ++i)
{
auto outIterator = _fontLetterDefinitions.find(utf16String[i]);