summarylogtreecommitdiffstats
path: root/fix-building-with-system-icu.diff
diff options
context:
space:
mode:
Diffstat (limited to 'fix-building-with-system-icu.diff')
-rw-r--r--fix-building-with-system-icu.diff11
1 files changed, 11 insertions, 0 deletions
diff --git a/fix-building-with-system-icu.diff b/fix-building-with-system-icu.diff
new file mode 100644
index 000000000000..ed49460222b8
--- /dev/null
+++ b/fix-building-with-system-icu.diff
@@ -0,0 +1,11 @@
+--- a/src/3rdparty/chromium/third_party/WebKit/Source/core/dom/Document.cpp
++++ b/src/3rdparty/chromium/third_party/WebKit/Source/core/dom/Document.cpp
+@@ -4667,7 +4667,7 @@
+
+ for (unsigned i = 0; i < length;) {
+ UChar32 c;
+- U16_NEXT(characters, i, length, c)
++ U16_NEXT(characters, i, length, c);
+ if (c == ':') {
+ if (sawColon)
+ return ParseQualifiedNameResult(QNMultipleColons);