Subject: [PATCH] Fix compilateion with ICU. Regressed by https://github.com/unicode-org/icu/commit/480bec3ea652 --- modules/web/src/main/native/Source/WebCore/dom/Document.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/web/src/main/native/Source/WebCore/dom/Document.cpp b/modules/web/src/main/native/Source/WebCore/dom/Document.cpp index ec30fb5..4b0ff9d 100644 --- a/modules/web/src/main/native/Source/WebCore/dom/Document.cpp +++ b/modules/web/src/main/native/Source/WebCore/dom/Document.cpp @@ -4704,12 +4704,12 @@ static bool isValidNameNonASCII(const UChar* characters, unsigned length) unsigned i = 0; UChar32 c; - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!isValidNameStart(c)) return false; while (i < length) { - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!isValidNamePart(c)) return false; } @@ -4769,7 +4769,7 @@ ExceptionOr> Document::parseQualifiedName( for (unsigned i = 0; i < length; ) { UChar32 c; - U16_NEXT(qualifiedName, i, length, c) + U16_NEXT(qualifiedName, i, length, c); if (c == ':') { if (sawColon) return Exception { InvalidCharacterError }; -- 2.26.2