You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Update ICU to 76.1
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user