diff options
Diffstat (limited to 'thirdparty/icu4c/common/bmpset.h')
-rw-r--r-- | thirdparty/icu4c/common/bmpset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/icu4c/common/bmpset.h b/thirdparty/icu4c/common/bmpset.h index e1982ac669..fad0310038 100644 --- a/thirdparty/icu4c/common/bmpset.h +++ b/thirdparty/icu4c/common/bmpset.h @@ -48,14 +48,14 @@ public: * It must be s<limit and spanCondition==0 or 1. * @return The string pointer which limits the span. */ - const UChar *span(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const; + const char16_t *span(const char16_t *s, const char16_t *limit, USetSpanCondition spanCondition) const; /* * Span the trailing substring for which each character c has spanCondition==contains(c). * It must be s<limit and spanCondition==0 or 1. * @return The string pointer which starts the span. */ - const UChar *spanBack(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const; + const char16_t *spanBack(const char16_t *s, const char16_t *limit, USetSpanCondition spanCondition) const; /* * Span the initial substring for which each character c has spanCondition==contains(c). |