diff options
author | Ansariel Hiller <Ansariel@users.noreply.github.com> | 2024-09-09 12:02:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 13:02:34 +0300 |
commit | d91d39fa0f7f4f204d6fb7ff66b9817e498dbd61 (patch) | |
tree | 467806f61646cd62b195143cb89f384a472e34bf /indra/newview/llviewertexteditor.cpp | |
parent | 2f692fbac36117e1b3c5f2ec214fd188c7e73da7 (diff) |
Changes towards C++20 compatibility (#2520)
Diffstat (limited to 'indra/newview/llviewertexteditor.cpp')
-rw-r--r-- | indra/newview/llviewertexteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 14228b469f..5793a28b80 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -503,7 +503,7 @@ S32 LLEmbeddedItems::getIndexFromEmbeddedChar(llwchar wch) } else { - LL_WARNS() << "Embedded char " << wch << " not found, using 0" << LL_ENDL; + LL_WARNS() << "Embedded char " << (int)wch << " not found, using 0" << LL_ENDL; return 0; } } |