Added ReferenceType::operator!=()

This commit is contained in:
Benoit Blanchon
2014-11-03 18:25:17 +01:00
parent f224408c07
commit 2f8fde6772

View File

@ -18,6 +18,8 @@ class ReferenceType {
return this == &other; return this == &other;
} }
bool operator!=(const ReferenceType& other) const { return this != &other; }
protected: protected:
ReferenceType() {} ReferenceType() {}