Non-functional: Fix #1231: remove duplicated code.

This commit is contained in:
John Kessenich 2018-01-31 22:15:45 -07:00
parent 2b5ea9f851
commit e349af7e20

View File

@ -595,9 +595,6 @@ public:
if (! unionArray || ! rhs.unionArray)
return false;
if (! unionArray || ! rhs.unionArray)
return false;
return *unionArray == *rhs.unionArray;
}
bool operator!=(const TConstUnionArray& rhs) const { return ! operator==(rhs); }