mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-21373 Remove wrong cast to avoid CFI
This commit is contained in:
parent
5d81f6f9a0
commit
916932648d
1 changed files with 1 additions and 1 deletions
|
@ -1457,7 +1457,7 @@ AliasReplacer::outputToString(
|
|||
int32_t variantsStart = out.length();
|
||||
for (int32_t i = 0; i < variants.size(); i++) {
|
||||
out.append(SEP_CHAR, status)
|
||||
.append((const char*)((UVector*)variants.elementAt(i)),
|
||||
.append((const char*)(variants.elementAt(i)),
|
||||
status);
|
||||
}
|
||||
T_CString_toUpperCase(out.data() + variantsStart);
|
||||
|
|
Loading…
Add table
Reference in a new issue