You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Update HarfBuzz, ICU and FreeType
HarfBuzz: Update to version 7.3.0 ICU4C: Update to version 73.1 FreeType: Update to version 2.13.0
This commit is contained in:
@@ -59,7 +59,7 @@ class SimpleModifier;
|
||||
* @see UMessagePatternApostropheMode
|
||||
* @stable ICU 57
|
||||
*/
|
||||
class U_COMMON_API SimpleFormatter U_FINAL : public UMemory {
|
||||
class U_COMMON_API SimpleFormatter final : public UMemory {
|
||||
public:
|
||||
/**
|
||||
* Default constructor.
|
||||
@@ -217,13 +217,13 @@ public:
|
||||
*
|
||||
* @param values The argument values.
|
||||
* An argument value must not be the same object as appendTo.
|
||||
* Can be NULL if valuesLength==getArgumentLimit()==0.
|
||||
* Can be nullptr if valuesLength==getArgumentLimit()==0.
|
||||
* @param valuesLength The length of the values array.
|
||||
* Must be at least getArgumentLimit().
|
||||
* @param appendTo Gets the formatted pattern and values appended.
|
||||
* @param offsets offsets[i] receives the offset of where
|
||||
* values[i] replaced pattern argument {i}.
|
||||
* Can be shorter or longer than values. Can be NULL if offsetsLength==0.
|
||||
* Can be shorter or longer than values. Can be nullptr if offsetsLength==0.
|
||||
* If there is no {i} in the pattern, then offsets[i] is set to -1.
|
||||
* @param offsetsLength The length of the offsets array.
|
||||
* @param errorCode ICU error code in/out parameter.
|
||||
@@ -243,13 +243,13 @@ public:
|
||||
*
|
||||
* @param values The argument values.
|
||||
* An argument value may be the same object as result.
|
||||
* Can be NULL if valuesLength==getArgumentLimit()==0.
|
||||
* Can be nullptr if valuesLength==getArgumentLimit()==0.
|
||||
* @param valuesLength The length of the values array.
|
||||
* Must be at least getArgumentLimit().
|
||||
* @param result Gets its contents replaced by the formatted pattern and values.
|
||||
* @param offsets offsets[i] receives the offset of where
|
||||
* values[i] replaced pattern argument {i}.
|
||||
* Can be shorter or longer than values. Can be NULL if offsetsLength==0.
|
||||
* Can be shorter or longer than values. Can be nullptr if offsetsLength==0.
|
||||
* If there is no {i} in the pattern, then offsets[i] is set to -1.
|
||||
* @param offsetsLength The length of the offsets array.
|
||||
* @param errorCode ICU error code in/out parameter.
|
||||
|
||||
Reference in New Issue
Block a user