Skip to content
Snippets Groups Projects
Commit 57940854 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix loop conversion warning

parent 6b24f65e
No related branches found
No related tags found
No related merge requests found
...@@ -448,7 +448,7 @@ LLFontGlyphInfo* LLFontFreetype::addGlyph(llwchar wch) const ...@@ -448,7 +448,7 @@ LLFontGlyphInfo* LLFontFreetype::addGlyph(llwchar wch) const
if (glyph_index == 0) if (glyph_index == 0)
{ {
//LL_INFOS() << "Trying to add glyph from fallback font!" << LL_ENDL; //LL_INFOS() << "Trying to add glyph from fallback font!" << LL_ENDL;
for (const auto fallback_fontp : mFallbackFonts) for (const auto& fallback_fontp : mFallbackFonts)
{ {
glyph_index = FT_Get_Char_Index(fallback_fontp->mFTFace, wch); glyph_index = FT_Get_Char_Index(fallback_fontp->mFTFace, wch);
if (glyph_index) if (glyph_index)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment