From 0937885bc90bd2c2d938bd2e16e0c164e80625fe Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 21 Jul 2020 18:09:47 +0300 Subject: Release version 65.1.0+4 Fix Clang 10 compilation errors Canonicalize license in manifests Add glue buildfile --- libicui18n/libicui18n/rbtz.cpp.patch | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libicui18n/libicui18n/rbtz.cpp.patch (limited to 'libicui18n/libicui18n/rbtz.cpp.patch') diff --git a/libicui18n/libicui18n/rbtz.cpp.patch b/libicui18n/libicui18n/rbtz.cpp.patch new file mode 100644 index 0000000..551cebe --- /dev/null +++ b/libicui18n/libicui18n/rbtz.cpp.patch @@ -0,0 +1,29 @@ +--- libicui18n/i18n/rbtz.cpp 2019-12-23 14:38:40.227889254 +0300 ++++ libicui18n/rbtz.cpp 2020-07-21 14:30:49.408841121 +0300 +@@ -76,7 +76,7 @@ RuleBasedTimeZone::~RuleBasedTimeZone() + + RuleBasedTimeZone& + RuleBasedTimeZone::operator=(const RuleBasedTimeZone& right) { +- if (*this != right) { ++ if (!(*this == right)) { + BasicTimeZone::operator=(right); + deleteRules(); + fInitialRule = right.fInitialRule->clone(); +@@ -98,7 +98,7 @@ RuleBasedTimeZone::operator==(const Time + return FALSE; + } + RuleBasedTimeZone *rbtz = (RuleBasedTimeZone*)&that; +- if (*fInitialRule != *(rbtz->fInitialRule)) { ++ if (!(*fInitialRule == *(rbtz->fInitialRule))) { + return FALSE; + } + if (compareRules(fHistoricRules, rbtz->fHistoricRules) +@@ -532,7 +532,7 @@ RuleBasedTimeZone::hasSameRules(const Ti + return FALSE; + } + const RuleBasedTimeZone& that = (const RuleBasedTimeZone&)other; +- if (*fInitialRule != *(that.fInitialRule)) { ++ if (!(*fInitialRule == *(that.fInitialRule))) { + return FALSE; + } + if (compareRules(fHistoricRules, that.fHistoricRules) -- cgit v1.1