summaryrefslogtreecommitdiffstats
path: root/thirdparty/icu4c/common/locutil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/icu4c/common/locutil.cpp')
-rw-r--r--thirdparty/icu4c/common/locutil.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/icu4c/common/locutil.cpp b/thirdparty/icu4c/common/locutil.cpp
index 1abecef1c5..a257ec593a 100644
--- a/thirdparty/icu4c/common/locutil.cpp
+++ b/thirdparty/icu4c/common/locutil.cpp
@@ -171,7 +171,7 @@ LocaleUtility::initLocaleFromName(const UnicodeString& id, Locale& result)
prev = 0;
UErrorCode status = U_ZERO_ERROR;
do {
- i = id.indexOf((char16_t)0x40, prev);
+ i = id.indexOf(static_cast<char16_t>(0x40), prev);
if(i < 0) {
// no @ between prev and the rest of the string
buffer.appendInvariantChars(id.tempSubString(prev), status);
@@ -224,7 +224,7 @@ LocaleUtility::getAvailableLocaleNames(const UnicodeString& bundleID)
Hashtable* htp;
umtx_lock(nullptr);
- htp = (Hashtable*) cache->get(bundleID);
+ htp = static_cast<Hashtable*>(cache->get(bundleID));
umtx_unlock(nullptr);
if (htp == nullptr) {