Skip to content

Commit 3b73aa4

Browse files
targosdanielleadams
authored andcommittedJan 3, 2023
deps: update ICU to 72.1
Refs: https://github.com/unicode-org/icu/releases/tag/release-72-1 PR-URL: #45068 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Steven R Loomis <srloomis@us.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
1 parent 555d172 commit 3b73aa4

File tree

497 files changed

+14841
-11304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

497 files changed

+14841
-11304
lines changed
 

‎deps/icu-small/README-FULL-ICU.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ICU sources - auto generated by shrink-icu-src.py
22

33
This directory contains the ICU subset used by --with-intl=full-icu
4-
It is a strict subset of ICU 71 source files with the following exception(s):
5-
* deps/icu-small/source/data/in/icudt71l.dat.bz2 : compressed data file
4+
It is a strict subset of ICU 72 source files with the following exception(s):
5+
* deps/icu-small/source/data/in/icudt72l.dat.bz2 : compressed data file
66

77

88
To rebuild this directory, see ../../tools/icu/README.md

‎deps/icu-small/source/common/appendable.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ Appendable::appendString(const UChar *s, int32_t length) {
3737
UChar c;
3838
while((c=*s++)!=0) {
3939
if(!appendCodeUnit(c)) {
40-
return FALSE;
40+
return false;
4141
}
4242
}
4343
} else if(length>0) {
4444
const UChar *limit=s+length;
4545
do {
4646
if(!appendCodeUnit(*s++)) {
47-
return FALSE;
47+
return false;
4848
}
4949
} while(s<limit);
5050
}
51-
return TRUE;
51+
return true;
5252
}
5353

5454
UBool
5555
Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) {
56-
return TRUE;
56+
return true;
5757
}
5858

5959
UChar *

0 commit comments

Comments
 (0)
Please sign in to comment.