diff options
Diffstat (limited to 'thirdparty/icu4c/common/patternprops.cpp')
-rw-r--r-- | thirdparty/icu4c/common/patternprops.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/thirdparty/icu4c/common/patternprops.cpp b/thirdparty/icu4c/common/patternprops.cpp index da3243d301..9922683cda 100644 --- a/thirdparty/icu4c/common/patternprops.cpp +++ b/thirdparty/icu4c/common/patternprops.cpp @@ -164,8 +164,8 @@ PatternProps::isWhiteSpace(UChar32 c) { } } -const UChar * -PatternProps::skipWhiteSpace(const UChar *s, int32_t length) { +const char16_t * +PatternProps::skipWhiteSpace(const char16_t *s, int32_t length) { while(length>0 && isWhiteSpace(*s)) { ++s; --length; @@ -183,8 +183,8 @@ PatternProps::skipWhiteSpace(const UnicodeString& s, int32_t start) { return i; } -const UChar * -PatternProps::trimWhiteSpace(const UChar *s, int32_t &length) { +const char16_t * +PatternProps::trimWhiteSpace(const char16_t *s, int32_t &length) { if(length<=0 || (!isWhiteSpace(s[0]) && !isWhiteSpace(s[length-1]))) { return s; } @@ -205,11 +205,11 @@ PatternProps::trimWhiteSpace(const UChar *s, int32_t &length) { } UBool -PatternProps::isIdentifier(const UChar *s, int32_t length) { +PatternProps::isIdentifier(const char16_t *s, int32_t length) { if(length<=0) { return false; } - const UChar *limit=s+length; + const char16_t *limit=s+length; do { if(isSyntaxOrWhiteSpace(*s++)) { return false; @@ -218,8 +218,8 @@ PatternProps::isIdentifier(const UChar *s, int32_t length) { return true; } -const UChar * -PatternProps::skipIdentifier(const UChar *s, int32_t length) { +const char16_t * +PatternProps::skipIdentifier(const char16_t *s, int32_t length) { while(length>0 && !isSyntaxOrWhiteSpace(*s)) { ++s; --length; |