Commit e349af7e by John Kessenich

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

parent 2b5ea9f8
...@@ -595,9 +595,6 @@ public: ...@@ -595,9 +595,6 @@ public:
if (! unionArray || ! rhs.unionArray) if (! unionArray || ! rhs.unionArray)
return false; return false;
if (! unionArray || ! rhs.unionArray)
return false;
return *unionArray == *rhs.unionArray; return *unionArray == *rhs.unionArray;
} }
bool operator!=(const TConstUnionArray& rhs) const { return ! operator==(rhs); } bool operator!=(const TConstUnionArray& rhs) const { return ! operator==(rhs); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment