mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
23 lines
577 B
Diff
23 lines
577 B
Diff
diff --git a/intl/icu/source/common/umutex.h b/intl/icu/source/common/umutex.h
|
|
--- a/intl/icu/source/common/umutex.h
|
|
+++ b/intl/icu/source/common/umutex.h
|
|
@@ -315,17 +315,17 @@ U_NAMESPACE_END
|
|
# define NOMCX
|
|
# ifndef NOMINMAX
|
|
# define NOMINMAX
|
|
# endif
|
|
# include <windows.h>
|
|
|
|
|
|
typedef struct UMutex {
|
|
- UInitOnce fInitOnce;
|
|
+ icu::UInitOnce fInitOnce;
|
|
CRITICAL_SECTION fCS;
|
|
} UMutex;
|
|
|
|
/* Initializer for a static UMUTEX. Deliberately contains no value for the
|
|
* CRITICAL_SECTION.
|
|
*/
|
|
#define U_MUTEX_INITIALIZER {U_INITONCE_INITIALIZER}
|
|
|