Skip to content

Commit 9bdb4eb

Browse files
committed
Fix incompatibility with Xcode 16+ and c++20 after merge
1 parent e33cc45 commit 9bdb4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indra/llrender/llfontfreetype.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ void LLFontFreetype::renderGlyph(EFontGlyphType bitmap_type, U32 glyph_index, ll
645645
if (error == FT_Err_Out_Of_Memory)
646646
{
647647
LLError::LLUserWarningMsg::showOutOfMemory();
648-
LL_ERRS() << "Out of memory loading glyph for character " << wch << LL_ENDL;
648+
LL_ERRS() << "Out of memory loading glyph for character " << llformat("U+%xu", U32(wch)) << LL_ENDL;
649649
}
650650

651651
std::string message = llformat(

0 commit comments

Comments
 (0)