diff options
author | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-14 19:51:50 +0300 |
---|---|---|
committer | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-15 01:24:11 +0300 |
commit | cfcd865e05c0d0525ea27d1e153a043b32a85138 (patch) | |
tree | 68d3b3b25271e8a4998505897a269ff7ce119b76 /contrib/libs/icu/i18n/ucsdet.cpp | |
parent | ccb790c507bd5e8ffe2ef9886ce5ee0a7ce22a15 (diff) | |
download | ydb-cfcd865e05c0d0525ea27d1e153a043b32a85138.tar.gz |
Update ICU to 73.2
Diffstat (limited to 'contrib/libs/icu/i18n/ucsdet.cpp')
-rw-r--r-- | contrib/libs/icu/i18n/ucsdet.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/contrib/libs/icu/i18n/ucsdet.cpp b/contrib/libs/icu/i18n/ucsdet.cpp index 63f204d0e1..c8b8712fba 100644 --- a/contrib/libs/icu/i18n/ucsdet.cpp +++ b/contrib/libs/icu/i18n/ucsdet.cpp @@ -39,7 +39,7 @@ ucsdet_open(UErrorCode *status) if (U_FAILURE(*status)) { delete csd; - csd = NULL; + csd = nullptr; } return (UCharsetDetector *) csd; @@ -66,7 +66,7 @@ U_CAPI const char * U_EXPORT2 ucsdet_getName(const UCharsetMatch *ucsm, UErrorCode *status) { if(U_FAILURE(*status)) { - return NULL; + return nullptr; } return ((CharsetMatch *) ucsm)->getName(); @@ -86,7 +86,7 @@ U_CAPI const char * U_EXPORT2 ucsdet_getLanguage(const UCharsetMatch *ucsm, UErrorCode *status) { if(U_FAILURE(*status)) { - return NULL; + return nullptr; } return ((CharsetMatch *) ucsm)->getLanguage(); @@ -96,7 +96,7 @@ U_CAPI const UCharsetMatch * U_EXPORT2 ucsdet_detect(UCharsetDetector *ucsd, UErrorCode *status) { if(U_FAILURE(*status)) { - return NULL; + return nullptr; } return (const UCharsetMatch *) ((CharsetDetector *) ucsd)->detect(*status); @@ -117,7 +117,7 @@ ucsdet_detectAll(UCharsetDetector *ucsd, int32_t *maxMatchesFound, UErrorCode *status) { if(U_FAILURE(*status)) { - return NULL; + return nullptr; } CharsetDetector *csd = (CharsetDetector *) ucsd; @@ -147,8 +147,8 @@ U_CAPI UBool U_EXPORT2 ucsdet_isInputFilterEnabled(const UCharsetDetector *ucsd) { // todo: could use an error return... - if (ucsd == NULL) { - return FALSE; + if (ucsd == nullptr) { + return false; } return ((CharsetDetector *) ucsd)->getStripTagsFlag(); @@ -158,8 +158,8 @@ U_CAPI UBool U_EXPORT2 ucsdet_enableInputFilter(UCharsetDetector *ucsd, UBool filter) { // todo: could use an error return... - if (ucsd == NULL) { - return FALSE; + if (ucsd == nullptr) { + return false; } CharsetDetector *csd = (CharsetDetector *) ucsd; @@ -172,7 +172,7 @@ ucsdet_enableInputFilter(UCharsetDetector *ucsd, UBool filter) U_CAPI int32_t U_EXPORT2 ucsdet_getUChars(const UCharsetMatch *ucsm, - UChar *buf, int32_t cap, UErrorCode *status) + char16_t *buf, int32_t cap, UErrorCode *status) { if(U_FAILURE(*status)) { return 0; |