Issue #1971 - Part 2: Update ICU source to 63.2.

This commit is contained in:
Job Bautista 2022-07-24 21:03:27 +08:00 committed by roytam1
commit 1e69214382
3160 changed files with 275815 additions and 234203 deletions

View file

@ -1,4 +1,4 @@
// Copyright (C) 2016 and later: Unicode, Inc. and others.
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**************************************************************************
@ -93,7 +93,7 @@ public:
* @return 16-bit code unit of text at given offset
* @stable ICU 1.8
*/
inline UChar charAt(int32_t offset) const;
inline char16_t charAt(int32_t offset) const;
/**
* Returns the 32-bit code point at the given 16-bit offset into
@ -230,7 +230,7 @@ protected:
* Virtual version of charAt().
* @stable ICU 2.4
*/
virtual UChar getCharAt(int32_t offset) const = 0;
virtual char16_t getCharAt(int32_t offset) const = 0;
/**
* Virtual version of char32At().
@ -246,7 +246,7 @@ Replaceable::length() const {
return getLength();
}
inline UChar
inline char16_t
Replaceable::charAt(int32_t offset) const {
return getCharAt(offset);
}