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/include/unicode/choicfmt.h | |
parent | ccb790c507bd5e8ffe2ef9886ce5ee0a7ce22a15 (diff) | |
download | ydb-cfcd865e05c0d0525ea27d1e153a043b32a85138.tar.gz |
Update ICU to 73.2
Diffstat (limited to 'contrib/libs/icu/include/unicode/choicfmt.h')
-rw-r--r-- | contrib/libs/icu/include/unicode/choicfmt.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/libs/icu/include/unicode/choicfmt.h b/contrib/libs/icu/include/unicode/choicfmt.h index 0e7ae186d4..429fa0cebd 100644 --- a/contrib/libs/icu/include/unicode/choicfmt.h +++ b/contrib/libs/icu/include/unicode/choicfmt.h @@ -330,31 +330,31 @@ public: int32_t count); /** - * Returns NULL and 0. + * Returns nullptr and 0. * Before ICU 4.8, this used to return the choice limits array. * * @param count Will be set to 0. - * @return NULL + * @return nullptr * @deprecated ICU 4.8 Use the MessagePattern class to analyze a ChoiceFormat pattern. */ virtual const double* getLimits(int32_t& count) const; /** - * Returns NULL and 0. + * Returns nullptr and 0. * Before ICU 4.8, this used to return the limit booleans array. * * @param count Will be set to 0. - * @return NULL + * @return nullptr * @deprecated ICU 4.8 Use the MessagePattern class to analyze a ChoiceFormat pattern. */ virtual const UBool* getClosures(int32_t& count) const; /** - * Returns NULL and 0. + * Returns nullptr and 0. * Before ICU 4.8, this used to return the array of choice strings. * * @param count Will be set to 0. - * @return NULL + * @return nullptr * @deprecated ICU 4.8 Use the MessagePattern class to analyze a ChoiceFormat pattern. */ virtual const UnicodeString* getFormats(int32_t& count) const; @@ -478,7 +478,7 @@ private: */ static UnicodeString& dtos(double value, UnicodeString& string); - ChoiceFormat(); // default constructor not implemented + ChoiceFormat() = delete; // default constructor not implemented /** * Construct a new ChoiceFormat with the limits and the corresponding formats |