Bug 1822980 - Fix system ICU build error. r=platform-i18n-reviewers,dminor

Differential Revision: https://phabricator.services.mozilla.com/D172978
This commit is contained in:
Tom Schuster 2023-03-21 15:13:23 +00:00
Родитель e5fbd5ef24
Коммит 7b3f9f5ef0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -226,6 +226,7 @@ class TimeZone final {
static Result<SpanEnumeration<char>, ICUError> GetAvailableTimeZones();
private:
#if MOZ_INTL_USE_ICU_CPP_TIMEZONE
template <typename B>
static ICUResult FillBuffer(const icu::UnicodeString& aString, B& aBuffer) {
int32_t length = aString.length();
@ -245,7 +246,6 @@ class TimeZone final {
return Ok{};
}
#if MOZ_INTL_USE_ICU_CPP_TIMEZONE
UniquePtr<icu::TimeZone> mTimeZone = nullptr;
#else
UCalendar* mCalendar = nullptr;