16 lines
753 B
Diff
16 lines
753 B
Diff
diff --git a/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc b/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc
|
|
index e34b07372..c0f9268aa 100644
|
|
--- a/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc
|
|
+++ b/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc
|
|
@@ -162,7 +162,9 @@ static const unsigned char kAsciiLineBreakTable[][(kAsciiLineBreakTableLastChar
|
|
};
|
|
// clang-format on
|
|
|
|
-#if U_ICU_VERSION_MAJOR_NUM >= 58
|
|
+#if U_ICU_VERSION_MAJOR_NUM >= 74
|
|
+#define BA_LB_COUNT (U_LB_COUNT - 8)
|
|
+#elif U_ICU_VERSION_MAJOR_NUM >= 58
|
|
#define BA_LB_COUNT (U_LB_COUNT - 3)
|
|
#else
|
|
#define BA_LB_COUNT U_LB_COUNT
|