summaryrefslogtreecommitdiff
path: root/thirdparty/icu4c/common/ustrenum.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-28 09:09:20 +0200
committerGitHub <noreply@github.com>2021-10-28 09:09:20 +0200
commit0ec77631979997b3e6bcd9146ea8f1c3e4166b81 (patch)
treeb3d10a28da7ebbf1e8b8b9c25d1ac89c91aa0d73 /thirdparty/icu4c/common/ustrenum.h
parentd4067e661cf7d54ff24c223b7d0a7388dc08c6b2 (diff)
parent44a241b241af6453d4459c79b1a562c447e36636 (diff)
Merge pull request #54337 from bruvzg/icu_70_1
Diffstat (limited to 'thirdparty/icu4c/common/ustrenum.h')
-rw-r--r--thirdparty/icu4c/common/ustrenum.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/thirdparty/icu4c/common/ustrenum.h b/thirdparty/icu4c/common/ustrenum.h
index a82162e2bd..3703dedb97 100644
--- a/thirdparty/icu4c/common/ustrenum.h
+++ b/thirdparty/icu4c/common/ustrenum.h
@@ -47,9 +47,9 @@ public:
* @param status the error code.
* @return number of elements in the iterator.
*/
- virtual int32_t count(UErrorCode& status) const;
+ virtual int32_t count(UErrorCode& status) const override;
- virtual const char* next(int32_t *resultLength, UErrorCode& status);
+ virtual const char* next(int32_t *resultLength, UErrorCode& status) override;
/**
* Returns the next element a UnicodeString*. If there are no
@@ -57,18 +57,18 @@ public:
* @param status the error code.
* @return a pointer to the string, or NULL.
*/
- virtual const UnicodeString* snext(UErrorCode& status);
+ virtual const UnicodeString* snext(UErrorCode& status) override;
/**
* Resets the iterator.
* @param status the error code.
*/
- virtual void reset(UErrorCode& status);
+ virtual void reset(UErrorCode& status) override;
/**
* ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class.
*/
- virtual UClassID getDynamicClassID() const;
+ virtual UClassID getDynamicClassID() const override;
/**
* ICU4C "poor man's RTTI", returns a UClassID for this ICU class.