mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
Issue #1971 - Part 2: Update ICU source to 63.2.
This commit is contained in:
parent
8df84683be
commit
1e69214382
3160 changed files with 275815 additions and 234203 deletions
|
|
@ -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
|
||||
/*
|
||||
**********************************************************************
|
||||
|
|
@ -140,7 +140,7 @@ OlsonTimeZone::OlsonTimeZone(const UResourceBundle* top,
|
|||
// Pre-32bit second transitions
|
||||
ures_getByKey(res, kTRANSPRE32, &r, &ec);
|
||||
transitionTimesPre32 = ures_getIntVector(&r, &len, &ec);
|
||||
transitionCountPre32 = len >> 1;
|
||||
transitionCountPre32 = static_cast<int16_t>(len >> 1);
|
||||
if (ec == U_MISSING_RESOURCE_ERROR) {
|
||||
// No pre-32bit transitions
|
||||
transitionTimesPre32 = NULL;
|
||||
|
|
@ -153,7 +153,7 @@ OlsonTimeZone::OlsonTimeZone(const UResourceBundle* top,
|
|||
// 32bit second transitions
|
||||
ures_getByKey(res, kTRANS, &r, &ec);
|
||||
transitionTimes32 = ures_getIntVector(&r, &len, &ec);
|
||||
transitionCount32 = len;
|
||||
transitionCount32 = static_cast<int16_t>(len);
|
||||
if (ec == U_MISSING_RESOURCE_ERROR) {
|
||||
// No 32bit transitions
|
||||
transitionTimes32 = NULL;
|
||||
|
|
@ -166,7 +166,7 @@ OlsonTimeZone::OlsonTimeZone(const UResourceBundle* top,
|
|||
// Post-32bit second transitions
|
||||
ures_getByKey(res, kTRANSPOST32, &r, &ec);
|
||||
transitionTimesPost32 = ures_getIntVector(&r, &len, &ec);
|
||||
transitionCountPost32 = len >> 1;
|
||||
transitionCountPost32 = static_cast<int16_t>(len >> 1);
|
||||
if (ec == U_MISSING_RESOURCE_ERROR) {
|
||||
// No pre-32bit transitions
|
||||
transitionTimesPost32 = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue