From 57940854910967bb8ca13f3b726aafd55e69e9ec Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 7 Nov 2020 02:03:19 -0500
Subject: [PATCH] Fix loop conversion warning

---
 indra/llrender/llfontfreetype.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp
index 31eea6733bf..0b2b6ea972f 100644
--- a/indra/llrender/llfontfreetype.cpp
+++ b/indra/llrender/llfontfreetype.cpp
@@ -448,7 +448,7 @@ LLFontGlyphInfo* LLFontFreetype::addGlyph(llwchar wch) const
 	if (glyph_index == 0)
 	{
 		//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);
 			if (glyph_index)
-- 
GitLab