diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-24 17:25:25 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-24 17:25:25 +0800 |
commit | a20bf9a72365142e6a534180c375221c100d7c54 (patch) | |
tree | d61346da0fe492a2a82f0673d49ad298eb990b3a /indra/llcommon/llstring.cpp | |
parent | d1353441f91d5776e1f4e72666f7c9de96eecca5 (diff) | |
parent | 09615bb5160d6ab67f027409ec6be25336842ab7 (diff) |
Merge branch 'main' into gltf_mesh_import
Diffstat (limited to 'indra/llcommon/llstring.cpp')
-rw-r--r-- | indra/llcommon/llstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index 07adf71d18..bb6d091a97 100644 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -260,7 +260,7 @@ S32 utf16str_wstring_length(const llutf16string &utf16str, const S32 utf16_len) { S32 surrogate_pairs = 0; // ... craziness to make gcc happy (llutf16string.c_str() is tweaked on linux): - const U16 *const utf16_chars = &(*(utf16str.begin())); + const auto *const utf16_chars = &(*(utf16str.begin())); S32 i = 0; while (i < utf16_len) { |