diff options
Diffstat (limited to 'thirdparty/icu4c/common/utrie2.h')
-rw-r--r-- | thirdparty/icu4c/common/utrie2.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/thirdparty/icu4c/common/utrie2.h b/thirdparty/icu4c/common/utrie2.h index ace52cce37..431f11568e 100644 --- a/thirdparty/icu4c/common/utrie2.h +++ b/thirdparty/icu4c/common/utrie2.h @@ -599,34 +599,34 @@ U_NAMESPACE_BEGIN // Use the Forward/Backward subclasses below. class UTrie2StringIterator : public UMemory { public: - UTrie2StringIterator(const UTrie2 *t, const UChar *p) : + UTrie2StringIterator(const UTrie2 *t, const char16_t *p) : trie(t), codePointStart(p), codePointLimit(p), codePoint(U_SENTINEL) {} const UTrie2 *trie; - const UChar *codePointStart, *codePointLimit; + const char16_t *codePointStart, *codePointLimit; UChar32 codePoint; }; class BackwardUTrie2StringIterator : public UTrie2StringIterator { public: - BackwardUTrie2StringIterator(const UTrie2 *t, const UChar *s, const UChar *p) : + BackwardUTrie2StringIterator(const UTrie2 *t, const char16_t *s, const char16_t *p) : UTrie2StringIterator(t, p), start(s) {} uint16_t previous16(); - const UChar *start; + const char16_t *start; }; class ForwardUTrie2StringIterator : public UTrie2StringIterator { public: - // Iteration limit l can be NULL. + // Iteration limit l can be nullptr. // In that case, the caller must detect c==0 and stop. - ForwardUTrie2StringIterator(const UTrie2 *t, const UChar *p, const UChar *l) : + ForwardUTrie2StringIterator(const UTrie2 *t, const char16_t *p, const char16_t *l) : UTrie2StringIterator(t, p), limit(l) {} uint16_t next16(); - const UChar *limit; + const char16_t *limit; }; U_NAMESPACE_END |