diff options
Diffstat (limited to 'thirdparty/icu4c/common/resbund_cnv.cpp')
-rw-r--r-- | thirdparty/icu4c/common/resbund_cnv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/icu4c/common/resbund_cnv.cpp b/thirdparty/icu4c/common/resbund_cnv.cpp index 7f83f06f0e..a109609189 100644 --- a/thirdparty/icu4c/common/resbund_cnv.cpp +++ b/thirdparty/icu4c/common/resbund_cnv.cpp @@ -49,7 +49,7 @@ ResourceBundle::constructForLocale(const UnicodeString& path, } else { UnicodeString nullTerminatedPath(path); - nullTerminatedPath.append((char16_t)0); + nullTerminatedPath.append(static_cast<char16_t>(0)); fResource = ures_openU(nullTerminatedPath.getBuffer(), locale.getName(), &error); } } |