ICU-5794 Fix for non-Intel machines and fix Solaris compiler warnings.

X-SVN-Rev: 23281
This commit is contained in:
George Rhoten 2008-01-21 22:38:52 +00:00
parent ec68039564
commit 713f3b91a8

View File

@ -173,7 +173,7 @@ PluralRules::clone() const {
PluralRules&
PluralRules::operator=(const PluralRules& other) {
if (this != other) {
if (this != &other) {
fLocaleStringsHash=other.fLocaleStringsHash;
delete mRules;
mRules = new RuleChain(*other.mRules);