mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Update ICU to 76.1
This commit is contained in:
parent
1015a481ff
commit
e698870caa
194 changed files with 13126 additions and 11221 deletions
|
|
@ -346,7 +346,7 @@ protected:
|
|||
virtual void write(StringTrieBuilder &builder) override;
|
||||
// Adds a unit with a final value.
|
||||
void add(int32_t c, int32_t value) {
|
||||
units[length]=(char16_t)c;
|
||||
units[length] = static_cast<char16_t>(c);
|
||||
equal[length]=nullptr;
|
||||
values[length]=value;
|
||||
++length;
|
||||
|
|
@ -354,7 +354,7 @@ protected:
|
|||
}
|
||||
// Adds a unit which leads to another match node.
|
||||
void add(int32_t c, Node *node) {
|
||||
units[length]=(char16_t)c;
|
||||
units[length] = static_cast<char16_t>(c);
|
||||
equal[length]=node;
|
||||
values[length]=0;
|
||||
++length;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue