mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
ICU4C: Update to version 73.2
This commit is contained in:
parent
e4be11b273
commit
1061912c7f
4 changed files with 14 additions and 12 deletions
9
thirdparty/icu4c/common/unicode/ures.h
vendored
9
thirdparty/icu4c/common/unicode/ures.h
vendored
|
|
@ -25,6 +25,7 @@
|
|||
#ifndef URES_H
|
||||
#define URES_H
|
||||
|
||||
#include "unicode/char16ptr.h"
|
||||
#include "unicode/utypes.h"
|
||||
#include "unicode/uloc.h"
|
||||
|
||||
|
|
@ -812,7 +813,7 @@ inline UnicodeString
|
|||
ures_getUnicodeString(const UResourceBundle *resB, UErrorCode* status) {
|
||||
UnicodeString result;
|
||||
int32_t len = 0;
|
||||
const char16_t *r = ures_getString(resB, &len, status);
|
||||
const char16_t *r = ConstChar16Ptr(ures_getString(resB, &len, status));
|
||||
if(U_SUCCESS(*status)) {
|
||||
result.setTo(true, r, len);
|
||||
} else {
|
||||
|
|
@ -837,7 +838,7 @@ inline UnicodeString
|
|||
ures_getNextUnicodeString(UResourceBundle *resB, const char ** key, UErrorCode* status) {
|
||||
UnicodeString result;
|
||||
int32_t len = 0;
|
||||
const char16_t* r = ures_getNextString(resB, &len, key, status);
|
||||
const char16_t* r = ConstChar16Ptr(ures_getNextString(resB, &len, key, status));
|
||||
if(U_SUCCESS(*status)) {
|
||||
result.setTo(true, r, len);
|
||||
} else {
|
||||
|
|
@ -859,7 +860,7 @@ inline UnicodeString
|
|||
ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) {
|
||||
UnicodeString result;
|
||||
int32_t len = 0;
|
||||
const char16_t* r = ures_getStringByIndex(resB, indexS, &len, status);
|
||||
const char16_t* r = ConstChar16Ptr(ures_getStringByIndex(resB, indexS, &len, status));
|
||||
if(U_SUCCESS(*status)) {
|
||||
result.setTo(true, r, len);
|
||||
} else {
|
||||
|
|
@ -882,7 +883,7 @@ inline UnicodeString
|
|||
ures_getUnicodeStringByKey(const UResourceBundle *resB, const char* key, UErrorCode* status) {
|
||||
UnicodeString result;
|
||||
int32_t len = 0;
|
||||
const char16_t* r = ures_getStringByKey(resB, key, &len, status);
|
||||
const char16_t* r = ConstChar16Ptr(ures_getStringByKey(resB, key, &len, status));
|
||||
if(U_SUCCESS(*status)) {
|
||||
result.setTo(true, r, len);
|
||||
} else {
|
||||
|
|
|
|||
6
thirdparty/icu4c/common/unicode/uvernum.h
vendored
6
thirdparty/icu4c/common/unicode/uvernum.h
vendored
|
|
@ -59,7 +59,7 @@
|
|||
* This value will change in the subsequent releases of ICU
|
||||
* @stable ICU 2.6
|
||||
*/
|
||||
#define U_ICU_VERSION_MINOR_NUM 1
|
||||
#define U_ICU_VERSION_MINOR_NUM 2
|
||||
|
||||
/** The current ICU patchlevel version as an integer.
|
||||
* This value will change in the subsequent releases of ICU
|
||||
|
|
@ -132,7 +132,7 @@
|
|||
* This value will change in the subsequent releases of ICU
|
||||
* @stable ICU 2.4
|
||||
*/
|
||||
#define U_ICU_VERSION "73.1"
|
||||
#define U_ICU_VERSION "73.2"
|
||||
|
||||
/**
|
||||
* The current ICU library major version number as a string, for library name suffixes.
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
/** Data version in ICU4C.
|
||||
* @internal ICU 4.4 Internal Use Only
|
||||
**/
|
||||
#define U_ICU_DATA_VERSION "73.1"
|
||||
#define U_ICU_DATA_VERSION "73.2"
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
||||
/*===========================================================================
|
||||
|
|
|
|||
BIN
thirdparty/icu4c/icudt73l.dat
vendored
BIN
thirdparty/icu4c/icudt73l.dat
vendored
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue