mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-21960 C++20 Warnings from ATOMIC_VAR_INIT
Remove the ICU macros ATOMIC_INT32_T_INITIALIZER and U_INITONCE_INITIALIZER, which made use of C++ ATOMIC_VAR_INIT, which has been removed from C++20. With modern C++ features being available, these macros no longer served any real need.
This commit is contained in:
parent
f8a0810a5a
commit
85705f04e0
65 changed files with 90 additions and 94 deletions
|
@ -279,7 +279,7 @@ ICUBreakIteratorService::~ICUBreakIteratorService() {}
|
|||
// defined in ucln_cmn.h
|
||||
U_NAMESPACE_END
|
||||
|
||||
static icu::UInitOnce gInitOnceBrkiter = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gInitOnceBrkiter {};
|
||||
static icu::ICULocaleService* gService = NULL;
|
||||
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ constexpr int32_t NUM_INCLUSIONS = UPROPS_SRC_COUNT + (UCHAR_INT_LIMIT - UCHAR_I
|
|||
|
||||
struct Inclusion {
|
||||
UnicodeSet *fSet = nullptr;
|
||||
UInitOnce fInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce fInitOnce {};
|
||||
};
|
||||
Inclusion gInclusions[NUM_INCLUSIONS]; // cached getInclusions()
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ U_NAMESPACE_BEGIN
|
|||
namespace {
|
||||
|
||||
EmojiProps *singleton = nullptr;
|
||||
icu::UInitOnce emojiInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce emojiInitOnce {};
|
||||
|
||||
UBool U_CALLCONV emojiprops_cleanup() {
|
||||
delete singleton;
|
||||
|
|
|
@ -134,14 +134,14 @@ U_CDECL_END
|
|||
|
||||
#if !NORM2_HARDCODE_NFC_DATA
|
||||
static Norm2AllModes *nfcSingleton;
|
||||
static icu::UInitOnce nfcInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce nfcInitOnce {};
|
||||
#endif
|
||||
|
||||
static Norm2AllModes *nfkcSingleton;
|
||||
static icu::UInitOnce nfkcInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce nfkcInitOnce {};
|
||||
|
||||
static Norm2AllModes *nfkc_cfSingleton;
|
||||
static icu::UInitOnce nfkc_cfInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce nfkc_cfInitOnce {};
|
||||
|
||||
static UHashtable *cache=NULL;
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ U_NAMESPACE_BEGIN
|
|||
|
||||
static icu::Locale* availableLocaleList = NULL;
|
||||
static int32_t availableLocaleListCount;
|
||||
static icu::UInitOnce gInitOnceLocale = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gInitOnceLocale {};
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
|
@ -102,7 +102,7 @@ namespace {
|
|||
// Enough capacity for the two lists in the res_index.res file
|
||||
const char** gAvailableLocaleNames[2] = {};
|
||||
int32_t gAvailableLocaleCounts[2] = {};
|
||||
icu::UInitOnce ginstalledLocalesInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce ginstalledLocalesInitOnce {};
|
||||
|
||||
class AvailableLocalesSink : public ResourceSink {
|
||||
public:
|
||||
|
|
|
@ -45,7 +45,7 @@ enum {
|
|||
};
|
||||
|
||||
LocaleDistance *gLocaleDistance = nullptr;
|
||||
UInitOnce gInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gInitOnce {};
|
||||
|
||||
UBool U_CALLCONV cleanup() {
|
||||
delete gLocaleDistance;
|
||||
|
|
|
@ -64,7 +64,7 @@ U_CDECL_END
|
|||
U_NAMESPACE_BEGIN
|
||||
|
||||
static Locale *gLocaleCache = NULL;
|
||||
static UInitOnce gLocaleCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gLocaleCacheInitOnce {};
|
||||
|
||||
// gDefaultLocaleMutex protects all access to gDefaultLocalesHashT and gDefaultLocale.
|
||||
static UMutex gDefaultLocaleMutex;
|
||||
|
@ -491,7 +491,7 @@ Locale::operator==( const Locale& other) const
|
|||
|
||||
namespace {
|
||||
|
||||
UInitOnce gKnownCanonicalizedInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gKnownCanonicalizedInitOnce {};
|
||||
UHashtable *gKnownCanonicalized = nullptr;
|
||||
|
||||
static const char* const KNOWN_CANONICALIZED[] = {
|
||||
|
@ -682,7 +682,7 @@ private:
|
|||
|
||||
|
||||
const AliasData* AliasData::gSingleton = nullptr;
|
||||
UInitOnce AliasData::gInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce AliasData::gInitOnce {};
|
||||
|
||||
UBool U_CALLCONV
|
||||
AliasData::cleanup()
|
||||
|
|
|
@ -245,7 +245,7 @@ private:
|
|||
namespace {
|
||||
|
||||
XLikelySubtags *gLikelySubtags = nullptr;
|
||||
UInitOnce gInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gInitOnce {};
|
||||
|
||||
UBool U_CALLCONV cleanup() {
|
||||
delete gLikelySubtags;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "umutex.h"
|
||||
|
||||
// see LocaleUtility::getAvailableLocaleNames
|
||||
static icu::UInitOnce LocaleUtilityInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce LocaleUtilityInitOnce {};
|
||||
static icu::Hashtable * LocaleUtility_cache = NULL;
|
||||
|
||||
#define UNDERSCORE_CHAR ((UChar)0x005f)
|
||||
|
|
|
@ -183,7 +183,7 @@ static UBool U_CALLCONV uprv_normalizer2_cleanup();
|
|||
U_CDECL_END
|
||||
|
||||
static Normalizer2 *noopSingleton;
|
||||
static icu::UInitOnce noopInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce noopInitOnce {};
|
||||
|
||||
static void U_CALLCONV initNoopSingleton(UErrorCode &errorCode) {
|
||||
if(U_FAILURE(errorCode)) {
|
||||
|
@ -245,7 +245,7 @@ Norm2AllModes::createNFCInstance(UErrorCode &errorCode) {
|
|||
|
||||
static Norm2AllModes *nfcSingleton;
|
||||
|
||||
static icu::UInitOnce nfcInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce nfcInitOnce {};
|
||||
|
||||
static void U_CALLCONV initNFCSingleton(UErrorCode &errorCode) {
|
||||
nfcSingleton=Norm2AllModes::createNFCInstance(errorCode);
|
||||
|
|
|
@ -730,7 +730,7 @@ private:
|
|||
const uint16_t *extraData; // mappings and/or compositions for yesYes, yesNo & noNo characters
|
||||
const uint8_t *smallFCD; // [0x100] one bit per 32 BMP code points, set if any FCD!=0
|
||||
|
||||
UInitOnce fCanonIterDataInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce fCanonIterDataInitOnce {};
|
||||
CanonIterData *fCanonIterData;
|
||||
};
|
||||
|
||||
|
|
|
@ -1260,10 +1260,10 @@ uprv_tzname(int n)
|
|||
|
||||
/* Get and set the ICU data directory --------------------------------------- */
|
||||
|
||||
static icu::UInitOnce gDataDirInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gDataDirInitOnce {};
|
||||
static char *gDataDirectory = NULL;
|
||||
|
||||
UInitOnce gTimeZoneFilesInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gTimeZoneFilesInitOnce {};
|
||||
static CharString *gTimeZoneFilesDirectory = NULL;
|
||||
|
||||
#if U_POSIX_LOCALE || U_PLATFORM_USES_ONLY_WIN32_API
|
||||
|
|
|
@ -1153,8 +1153,8 @@ U_NAMESPACE_END
|
|||
|
||||
static icu::UStack *gLanguageBreakFactories = nullptr;
|
||||
static const icu::UnicodeString *gEmptyString = nullptr;
|
||||
static icu::UInitOnce gLanguageBreakFactoriesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gRBBIInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gLanguageBreakFactoriesInitOnce {};
|
||||
static icu::UInitOnce gRBBIInitOnce {};
|
||||
|
||||
/**
|
||||
* Release all static memory held by breakiterator.
|
||||
|
|
|
@ -129,7 +129,7 @@ class ParseDataSink : public ResourceSink {
|
|||
};
|
||||
|
||||
|
||||
icu::UInitOnce gNumberParseUniSetsInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gNumberParseUniSetsInitOnce {};
|
||||
|
||||
UBool U_CALLCONV cleanupNumberParseUniSets() {
|
||||
if (gEmptyUnicodeSetInitialized) {
|
||||
|
|
|
@ -200,7 +200,7 @@ static icu::UMutex cnvCacheMutex;
|
|||
|
||||
static const char **gAvailableConverters = NULL;
|
||||
static uint16_t gAvailableConverterCount = 0;
|
||||
static icu::UInitOnce gAvailableConvertersInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gAvailableConvertersInitOnce {};
|
||||
|
||||
#if !U_CHARSET_IS_UTF8
|
||||
|
||||
|
|
|
@ -175,7 +175,7 @@ static const char DATA_NAME[] = "cnvalias";
|
|||
static const char DATA_TYPE[] = "icu";
|
||||
|
||||
static UDataMemory *gAliasData=NULL;
|
||||
static icu::UInitOnce gAliasDataInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gAliasDataInitOnce {};
|
||||
|
||||
enum {
|
||||
tocLengthIndex=0,
|
||||
|
|
|
@ -97,11 +97,11 @@ static const char CURRENCYPLURALS[] = "CurrencyPlurals";
|
|||
|
||||
// ISO codes mapping table
|
||||
static const UHashtable* gIsoCodes = NULL;
|
||||
static icu::UInitOnce gIsoCodesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gIsoCodesInitOnce {};
|
||||
|
||||
// Currency symbol equivalances
|
||||
static const icu::Hashtable* gCurrSymbolsEquiv = NULL;
|
||||
static icu::UInitOnce gCurrSymbolsEquivInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCurrSymbolsEquivInitOnce {};
|
||||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
|
|
|
@ -106,10 +106,10 @@ static UDataMemory *udata_findCachedData(const char *path, UErrorCode &err);
|
|||
*/
|
||||
static UDataMemory *gCommonICUDataArray[10] = { NULL }; // Access protected by icu global mutex.
|
||||
|
||||
static u_atomic_int32_t gHaveTriedToLoadCommonData = ATOMIC_INT32_T_INITIALIZER(0); // See extendICUData().
|
||||
static u_atomic_int32_t gHaveTriedToLoadCommonData {0}; // See extendICUData().
|
||||
|
||||
static UHashtable *gCommonDataCache = NULL; /* Global hash table of opened ICU data files. */
|
||||
static icu::UInitOnce gCommonDataCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCommonDataCacheInitOnce {};
|
||||
|
||||
#if !defined(ICU_DATA_DIR_WINDOWS)
|
||||
static UDataFileAccess gDataFileAccess = UDATA_DEFAULT_ACCESS; // Access not synchronized.
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
static UInitOnce gICUInitOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gICUInitOnce {};
|
||||
|
||||
static UBool U_CALLCONV uinit_cleanup() {
|
||||
gICUInitOnce.reset();
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "udataswp.h" /* for InvChar functions */
|
||||
|
||||
static UHashtable* gLocExtKeyMap = NULL;
|
||||
static icu::UInitOnce gLocExtKeyMapInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gLocExtKeyMapInitOnce {};
|
||||
|
||||
// bit flags for special types
|
||||
typedef enum {
|
||||
|
|
|
@ -71,7 +71,6 @@ U_NAMESPACE_BEGIN
|
|||
****************************************************************************/
|
||||
|
||||
typedef std::atomic<int32_t> u_atomic_int32_t;
|
||||
#define ATOMIC_INT32_T_INITIALIZER(val) ATOMIC_VAR_INIT(val)
|
||||
|
||||
inline int32_t umtx_loadAcquire(u_atomic_int32_t &var) {
|
||||
return var.load(std::memory_order_acquire);
|
||||
|
@ -96,18 +95,15 @@ inline int32_t umtx_atomic_dec(u_atomic_int32_t *var) {
|
|||
*
|
||||
*************************************************************************************************/
|
||||
|
||||
struct UInitOnce {
|
||||
u_atomic_int32_t fState;
|
||||
UErrorCode fErrCode;
|
||||
struct U_COMMON_API UInitOnce {
|
||||
u_atomic_int32_t fState {0};
|
||||
UErrorCode fErrCode {U_ZERO_ERROR};
|
||||
void reset() {fState = 0;}
|
||||
UBool isReset() {return umtx_loadAcquire(fState) == 0;}
|
||||
// Note: isReset() is used by service registration code.
|
||||
// Thread safety of this usage needs review.
|
||||
};
|
||||
|
||||
#define U_INITONCE_INITIALIZER {ATOMIC_INT32_T_INITIALIZER(0), U_ZERO_ERROR}
|
||||
|
||||
|
||||
U_COMMON_API UBool U_EXPORT2 umtx_initImplPreInit(UInitOnce &);
|
||||
U_COMMON_API void U_EXPORT2 umtx_initImplPostInit(UInitOnce &);
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ typedef struct {
|
|||
|
||||
static UDataMemory *uCharNamesData=NULL;
|
||||
static UCharNames *uCharNames=NULL;
|
||||
static icu::UInitOnce gCharNamesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCharNamesInitOnce {};
|
||||
|
||||
/*
|
||||
* Maximum length of character names (regular & 1.0).
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
static icu::UnifiedCache *gCache = NULL;
|
||||
static std::mutex *gCacheMutex = nullptr;
|
||||
static std::condition_variable *gInProgressValueAddedCond;
|
||||
static icu::UInitOnce gCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCacheInitOnce {};
|
||||
|
||||
static const int32_t MAX_EVICT_ITERATIONS = 10;
|
||||
static const int32_t DEFAULT_MAX_UNUSED = 1000;
|
||||
|
|
|
@ -62,7 +62,7 @@ U_CDECL_BEGIN
|
|||
static UBool U_CALLCONV uset_cleanup();
|
||||
|
||||
static UnicodeSet *uni32Singleton;
|
||||
static icu::UInitOnce uni32InitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce uni32InitOnce {};
|
||||
|
||||
/**
|
||||
* Cleanup function for UnicodeSet
|
||||
|
|
|
@ -49,7 +49,7 @@ U_NAMESPACE_USE
|
|||
|
||||
namespace {
|
||||
|
||||
icu::UInitOnce gLayoutInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gLayoutInitOnce {};
|
||||
UDataMemory *gLayoutMemory = nullptr;
|
||||
|
||||
UCPTrie *gInpcTrie = nullptr; // Indic_Positional_Category
|
||||
|
|
|
@ -49,7 +49,7 @@ TODO: This cache should probably be removed when the deprecated code is
|
|||
completely removed.
|
||||
*/
|
||||
static UHashtable *cache = NULL;
|
||||
static icu::UInitOnce gCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCacheInitOnce {};
|
||||
|
||||
static UMutex resbMutex;
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ U_CDECL_BEGIN
|
|||
Static cache for already opened StringPrep profiles
|
||||
*/
|
||||
static UHashtable *SHARED_DATA_HASHTABLE = NULL;
|
||||
static icu::UInitOnce gSharedDataInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSharedDataInitOnce {};
|
||||
|
||||
static UMutex usprepMutex;
|
||||
/* format version of spp file */
|
||||
|
|
|
@ -133,7 +133,7 @@ void BuddhistCalendar::timeToFields(UDate theTime, UBool quick, UErrorCode& stat
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gBCInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gBCInitOnce {};
|
||||
|
||||
|
||||
UBool BuddhistCalendar::haveDefaultCentury() const
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
#if !UCONFIG_NO_SERVICE
|
||||
static icu::ICULocaleService* gService = NULL;
|
||||
static icu::UInitOnce gServiceInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gServiceInitOnce {};
|
||||
|
||||
// INTERNAL - for cleanup
|
||||
U_CDECL_BEGIN
|
||||
|
|
|
@ -59,7 +59,7 @@ static icu::CalendarCache *gChineseCalendarWinterSolsticeCache = NULL;
|
|||
static icu::CalendarCache *gChineseCalendarNewYearCache = NULL;
|
||||
|
||||
static icu::TimeZone *gChineseCalendarZoneAstroCalc = NULL;
|
||||
static icu::UInitOnce gChineseCalendarZoneAstroCalcInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gChineseCalendarZoneAstroCalcInitOnce {};
|
||||
|
||||
/**
|
||||
* The start year of the Chinese calendar, the 61st year of the reign
|
||||
|
@ -843,7 +843,7 @@ ChineseCalendar::inDaylightTime(UErrorCode& status) const
|
|||
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInitOnce {};
|
||||
|
||||
|
||||
UBool ChineseCalendar::haveDefaultCentury() const
|
||||
|
|
|
@ -65,9 +65,9 @@ static icu::Locale* availableLocaleList = NULL;
|
|||
static int32_t availableLocaleListCount;
|
||||
#if !UCONFIG_NO_SERVICE
|
||||
static icu::ICULocaleService* gService = NULL;
|
||||
static icu::UInitOnce gServiceInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gServiceInitOnce {};
|
||||
#endif
|
||||
static icu::UInitOnce gAvailableLocaleListInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gAvailableLocaleListInitOnce {};
|
||||
|
||||
/**
|
||||
* Release all static memory held by collator.
|
||||
|
|
|
@ -33,7 +33,7 @@ U_NAMESPACE_BEGIN
|
|||
namespace {
|
||||
|
||||
static const CollationCacheEntry *rootSingleton = NULL;
|
||||
static UInitOnce initOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce initOnce {};
|
||||
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ CopticCalendar::handleComputeFields(int32_t julianDay, UErrorCode &/*status*/)
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
|
||||
static void U_CALLCONV initializeSystemDefaultCentury() {
|
||||
|
|
|
@ -47,7 +47,7 @@ struct CSRecognizerInfo : public UMemory {
|
|||
U_NAMESPACE_END
|
||||
|
||||
static icu::CSRecognizerInfo **fCSRecognizers = NULL;
|
||||
static icu::UInitOnce gCSRecognizersInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCSRecognizersInitOnce {};
|
||||
static int32_t fCSRecognizers_size = 0;
|
||||
|
||||
U_CDECL_BEGIN
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
// --- The cache --
|
||||
static icu::TimeZone *gDangiCalendarZoneAstroCalc = NULL;
|
||||
static icu::UInitOnce gDangiCalendarInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gDangiCalendarInitOnce {};
|
||||
|
||||
/**
|
||||
* The start year of the Korean traditional calendar (Dan-gi) is the inaugural
|
||||
|
|
|
@ -301,7 +301,7 @@ DayPeriodRulesCountSink::~DayPeriodRulesCountSink() {}
|
|||
|
||||
namespace {
|
||||
|
||||
UInitOnce initOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce initOnce {};
|
||||
|
||||
U_CFUNC UBool U_CALLCONV dayPeriodRulesCleanup() {
|
||||
delete[] data->rules;
|
||||
|
|
|
@ -473,7 +473,7 @@ DateTimePatternGenerator::~DateTimePatternGenerator() {
|
|||
|
||||
namespace {
|
||||
|
||||
UInitOnce initOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce initOnce {};
|
||||
UHashtable *localeToAllowedHourFormatsMap = nullptr;
|
||||
|
||||
// Value deleter for hashmap.
|
||||
|
|
|
@ -143,7 +143,7 @@ EthiopicCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
static void U_CALLCONV initializeSystemDefaultCentury()
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ static const char* gNeutralStr = "neutral";
|
|||
static const char* gMailTaintsStr = "maleTaints";
|
||||
static const char* gMixedNeutralStr = "mixedNeutral";
|
||||
static icu::GenderInfo* gObjs = NULL;
|
||||
static icu::UInitOnce gGenderInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gGenderInitOnce {};
|
||||
|
||||
enum GenderStyle {
|
||||
NEUTRAL,
|
||||
|
|
|
@ -1274,7 +1274,7 @@ GregorianCalendar::getType() const {
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
|
||||
UBool GregorianCalendar::haveDefaultCentury() const
|
||||
|
|
|
@ -686,7 +686,7 @@ HebrewCalendar::inDaylightTime(UErrorCode& status) const
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
UBool HebrewCalendar::haveDefaultCentury() const
|
||||
{
|
||||
|
|
|
@ -320,7 +320,7 @@ IndianCalendar::inDaylightTime(UErrorCode& status) const
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
|
||||
UBool IndianCalendar::haveDefaultCentury() const
|
||||
|
|
|
@ -712,7 +712,7 @@ IslamicCalendar::inDaylightTime(UErrorCode& status) const
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
|
||||
UBool IslamicCalendar::haveDefaultCentury() const
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "cstring.h"
|
||||
|
||||
static icu::EraRules * gJapaneseEraRules = nullptr;
|
||||
static icu::UInitOnce gJapaneseEraRulesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gJapaneseEraRulesInitOnce {};
|
||||
static int32_t gCurrentEra = 0;
|
||||
|
||||
U_CDECL_BEGIN
|
||||
|
|
|
@ -312,7 +312,7 @@ class CategoriesSink : public icu::ResourceSink {
|
|||
int32_t outIndex;
|
||||
};
|
||||
|
||||
icu::UInitOnce gUnitExtrasInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gUnitExtrasInitOnce {};
|
||||
|
||||
// Array of simple unit IDs.
|
||||
//
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace {
|
|||
alignas(DecimalFormatProperties)
|
||||
char kRawDefaultProperties[sizeof(DecimalFormatProperties)];
|
||||
|
||||
icu::UInitOnce gDefaultPropertiesInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gDefaultPropertiesInitOnce {};
|
||||
|
||||
void U_CALLCONV initDefaultProperties(UErrorCode&) {
|
||||
// can't fail, uses placement new into statically allocated space.
|
||||
|
|
|
@ -22,7 +22,7 @@ const int32_t ARG_NUM_LIMIT = 0x100;
|
|||
// These are the default currency spacing UnicodeSets in CLDR.
|
||||
// Pre-compute them for performance.
|
||||
// The Java unit test testCurrencySpacingPatternStability() will start failing if these change in CLDR.
|
||||
icu::UInitOnce gDefaultCurrencySpacingInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gDefaultCurrencySpacingInitOnce {};
|
||||
|
||||
UnicodeSet *UNISET_DIGIT = nullptr;
|
||||
UnicodeSet *UNISET_NOTSZ = nullptr;
|
||||
|
|
|
@ -33,7 +33,7 @@ using namespace icu::number::impl::skeleton;
|
|||
|
||||
namespace {
|
||||
|
||||
icu::UInitOnce gNumberSkeletonsInitOnce = U_INITONCE_INITIALIZER;
|
||||
icu::UInitOnce gNumberSkeletonsInitOnce {};
|
||||
|
||||
char16_t* kSerializedStemTrie = nullptr;
|
||||
|
||||
|
|
|
@ -156,11 +156,11 @@ static const icu::number::impl::CldrPatternStyle gFormatCldrStyles[UNUM_FORMAT_S
|
|||
|
||||
// Static hashtable cache of NumberingSystem objects used by NumberFormat
|
||||
static UHashtable * NumberingSystem_cache = NULL;
|
||||
static icu::UInitOnce gNSCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gNSCacheInitOnce {};
|
||||
|
||||
#if !UCONFIG_NO_SERVICE
|
||||
static icu::ICULocaleService* gService = NULL;
|
||||
static icu::UInitOnce gServiceInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gServiceInitOnce {};
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
@ -271,7 +271,7 @@ UBool NumberingSystem::isAlgorithmic() const {
|
|||
namespace {
|
||||
|
||||
UVector* gNumsysNames = nullptr;
|
||||
UInitOnce gNumSysInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gNumSysInitOnce {};
|
||||
|
||||
U_CFUNC UBool U_CALLCONV numSysCleanup() {
|
||||
delete gNumsysNames;
|
||||
|
|
|
@ -400,7 +400,7 @@ private:
|
|||
TimeArrayTimeZoneRule **historicRules;
|
||||
int16_t historicRuleCount;
|
||||
SimpleTimeZone *finalZoneWithStartYear; // hack
|
||||
UInitOnce transitionRulesInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce transitionRulesInitOnce {};
|
||||
};
|
||||
|
||||
inline int16_t
|
||||
|
|
|
@ -250,7 +250,7 @@ PersianCalendar::inDaylightTime(UErrorCode& status) const
|
|||
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
UBool PersianCalendar::haveDefaultCentury() const
|
||||
{
|
||||
|
|
|
@ -69,7 +69,7 @@ constexpr char16_t const *gGC_LVTPattern = u"[\\p{Hangul_Syllable_Type=LVT}]
|
|||
|
||||
|
||||
RegexStaticSets *RegexStaticSets::gStaticSets = nullptr;
|
||||
UInitOnce gStaticSetsInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gStaticSetsInitOnce {};
|
||||
|
||||
|
||||
RegexStaticSets::RegexStaticSets(UErrorCode *status) {
|
||||
|
|
|
@ -53,7 +53,7 @@ U_CDECL_END
|
|||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
static UInitOnce gRegionDataInitOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gRegionDataInitOnce {};
|
||||
static UVector* availableRegions[URGN_LIMIT];
|
||||
|
||||
static UHashtable *regionAliases = NULL;
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
U_NAMESPACE_BEGIN
|
||||
|
||||
SimpleDateFormatStaticSets *gStaticSets = NULL;
|
||||
UInitOnce gSimpleDateFormatStaticSetsInitOnce = U_INITONCE_INITIALIZER;
|
||||
UInitOnce gSimpleDateFormatStaticSetsInitOnce {};
|
||||
|
||||
SimpleDateFormatStaticSets::SimpleDateFormatStaticSets(UErrorCode &status)
|
||||
: fDateIgnorables(NULL),
|
||||
|
|
|
@ -140,7 +140,7 @@ void TaiwanCalendar::timeToFields(UDate theTime, UBool quick, UErrorCode& status
|
|||
*/
|
||||
static UDate gSystemDefaultCenturyStart = DBL_MIN;
|
||||
static int32_t gSystemDefaultCenturyStartYear = -1;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemDefaultCenturyInit {};
|
||||
|
||||
UBool TaiwanCalendar::haveDefaultCentury() const
|
||||
{
|
||||
|
|
|
@ -113,7 +113,7 @@ static const int32_t GMT_ID_LENGTH = 3;
|
|||
static const int32_t UNKNOWN_ZONE_ID_LENGTH = 11;
|
||||
|
||||
static icu::TimeZone* DEFAULT_ZONE = NULL;
|
||||
static icu::UInitOnce gDefaultZoneInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gDefaultZoneInitOnce {};
|
||||
|
||||
alignas(icu::SimpleTimeZone)
|
||||
static char gRawGMT[sizeof(icu::SimpleTimeZone)];
|
||||
|
@ -121,11 +121,11 @@ static char gRawGMT[sizeof(icu::SimpleTimeZone)];
|
|||
alignas(icu::SimpleTimeZone)
|
||||
static char gRawUNKNOWN[sizeof(icu::SimpleTimeZone)];
|
||||
|
||||
static icu::UInitOnce gStaticZonesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gStaticZonesInitOnce {};
|
||||
static UBool gStaticZonesInitialized = FALSE; // Whether the static zones are initialized and ready to use.
|
||||
|
||||
static char TZDATA_VERSION[16];
|
||||
static icu::UInitOnce gTZDataVersionInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gTZDataVersionInitOnce {};
|
||||
|
||||
static int32_t* MAP_SYSTEM_ZONES = NULL;
|
||||
static int32_t* MAP_CANONICAL_SYSTEM_ZONES = NULL;
|
||||
|
@ -135,9 +135,9 @@ static int32_t LEN_SYSTEM_ZONES = 0;
|
|||
static int32_t LEN_CANONICAL_SYSTEM_ZONES = 0;
|
||||
static int32_t LEN_CANONICAL_SYSTEM_LOCATION_ZONES = 0;
|
||||
|
||||
static icu::UInitOnce gSystemZonesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCanonicalZonesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCanonicalLocationZonesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gSystemZonesInitOnce {};
|
||||
static icu::UInitOnce gCanonicalZonesInitOnce {};
|
||||
static icu::UInitOnce gCanonicalLocationZonesInitOnce {};
|
||||
|
||||
U_CDECL_BEGIN
|
||||
static UBool U_CALLCONV timeZone_cleanup(void)
|
||||
|
|
|
@ -45,7 +45,7 @@ static const int32_t FORWARD = UTRANS_FORWARD;
|
|||
static const int32_t REVERSE = UTRANS_REVERSE;
|
||||
|
||||
static Hashtable* SPECIAL_INVERSES = NULL;
|
||||
static UInitOnce gSpecialInversesInitOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gSpecialInversesInitOnce {};
|
||||
|
||||
/**
|
||||
* The mutex controlling access to SPECIAL_INVERSES
|
||||
|
|
|
@ -145,10 +145,10 @@ static const int32_t ALL_GENERIC_NAME_TYPES = UTZGNM_LOCATION | UTZGNM_LONG | UT
|
|||
|
||||
// Time Zone ID/Short ID trie
|
||||
static TextTrieMap *gZoneIdTrie = NULL;
|
||||
static icu::UInitOnce gZoneIdTrieInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gZoneIdTrieInitOnce {};
|
||||
|
||||
static TextTrieMap *gShortZoneIdTrie = NULL;
|
||||
static icu::UInitOnce gShortZoneIdTrieInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gShortZoneIdTrieInitOnce {};
|
||||
|
||||
static UMutex gLock;
|
||||
|
||||
|
|
|
@ -55,10 +55,10 @@ static const int32_t TZDBNAMES_KEYS_SIZE = UPRV_LENGTHOF(TZDBNAMES_KEYS);
|
|||
static UMutex gDataMutex;
|
||||
|
||||
static UHashtable* gTZDBNamesMap = NULL;
|
||||
static icu::UInitOnce gTZDBNamesMapInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gTZDBNamesMapInitOnce {};
|
||||
|
||||
static TextTrieMap* gTZDBNamesTrie = NULL;
|
||||
static icu::UInitOnce gTZDBNamesTrieInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gTZDBNamesTrieInitOnce {};
|
||||
|
||||
// The order in which strings are stored may be different than the order in the public enum.
|
||||
enum UTimeZoneNameTypeIndex {
|
||||
|
|
|
@ -62,7 +62,7 @@ namespace {
|
|||
static const UChar *rootRules = NULL;
|
||||
static int32_t rootRulesLength = 0;
|
||||
static UResourceBundle *rootBundle = NULL;
|
||||
static UInitOnce gInitOnceUcolRes = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gInitOnceUcolRes {};
|
||||
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ U_NAMESPACE_USE
|
|||
static UnicodeSet *gInclusionSet = NULL;
|
||||
static UnicodeSet *gRecommendedSet = NULL;
|
||||
static const Normalizer2 *gNfdNormalizer = NULL;
|
||||
static UInitOnce gSpoofInitStaticsOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gSpoofInitStaticsOnce {};
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -538,7 +538,7 @@ spoofDataIsAcceptable(void *context,
|
|||
// uspoof_cleanupDefaultData - Called during cleanup.
|
||||
//
|
||||
|
||||
static UInitOnce gSpoofInitDefaultOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gSpoofInitDefaultOnce {};
|
||||
static SpoofData* gDefaultSpoofData;
|
||||
|
||||
static UBool U_CALLCONV
|
||||
|
|
|
@ -34,21 +34,21 @@ static icu::UMutex gZoneMetaLock;
|
|||
|
||||
// CLDR Canonical ID mapping table
|
||||
static UHashtable *gCanonicalIDCache = NULL;
|
||||
static icu::UInitOnce gCanonicalIDCacheInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCanonicalIDCacheInitOnce {};
|
||||
|
||||
// Metazone mapping table
|
||||
static UHashtable *gOlsonToMeta = NULL;
|
||||
static icu::UInitOnce gOlsonToMetaInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gOlsonToMetaInitOnce {};
|
||||
|
||||
// Available metazone IDs vector and table
|
||||
static icu::UVector *gMetaZoneIDs = NULL;
|
||||
static UHashtable *gMetaZoneIDTable = NULL;
|
||||
static icu::UInitOnce gMetaZoneIDsInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gMetaZoneIDsInitOnce {};
|
||||
|
||||
// Country info vectors
|
||||
static icu::UVector *gSingleZoneCountries = NULL;
|
||||
static icu::UVector *gMultiZonesCountries = NULL;
|
||||
static icu::UInitOnce gCountryInfoVectorsInitOnce = U_INITONCE_INITIALIZER;
|
||||
static icu::UInitOnce gCountryInfoVectorsInitOnce {};
|
||||
|
||||
U_CDECL_BEGIN
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
U_NAMESPACE_USE
|
||||
|
||||
static UFILE *gStdOut = NULL;
|
||||
static UInitOnce gStdOutInitOnce = U_INITONCE_INITIALIZER;
|
||||
static UInitOnce gStdOutInitOnce {};
|
||||
|
||||
static UBool U_CALLCONV uprintf_cleanup(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue