summaryrefslogtreecommitdiff
path: root/libicuuc/libicu/uniset.cpp.patch
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-07-21 18:09:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-07-21 18:09:47 +0300
commit0937885bc90bd2c2d938bd2e16e0c164e80625fe (patch)
tree004d3e91b98230cec3c69b4950d89206531f648b /libicuuc/libicu/uniset.cpp.patch
parentb7b91802a7d16cd9a435bcede5f31d2e3ccee653 (diff)
Release version 65.1.0+4v65.1.0+4
Fix Clang 10 compilation errors Canonicalize license in manifests Add glue buildfile
Diffstat (limited to 'libicuuc/libicu/uniset.cpp.patch')
-rw-r--r--libicuuc/libicu/uniset.cpp.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/libicuuc/libicu/uniset.cpp.patch b/libicuuc/libicu/uniset.cpp.patch
new file mode 100644
index 0000000..eff5c13
--- /dev/null
+++ b/libicuuc/libicu/uniset.cpp.patch
@@ -0,0 +1,11 @@
+--- libicu/uc/uniset.cpp 2020-07-21 11:57:44.853500497 +0300
++++ libicu/uniset.cpp 2020-07-21 12:52:58.109222826 +0300
+@@ -302,7 +302,7 @@ UBool UnicodeSet::operator==(const Unico
+ if (list[i] != o.list[i]) return FALSE;
+ }
+ if (hasStrings() != o.hasStrings()) { return FALSE; }
+- if (hasStrings() && *strings != *o.strings) return FALSE;
++ if (hasStrings() && !(*strings == *o.strings)) return FALSE;
+ return TRUE;
+ }
+