Add operator!= to STPathElement

This commit is contained in:
seelabs
2015-11-24 15:39:42 -05:00
parent 6d2f7e46dd
commit f3e93bbbeb

View File

@@ -165,6 +165,12 @@ public:
mIssuerID == t.mIssuerID;
}
bool
operator!= (const STPathElement& t) const
{
return !operator==(t);
}
private:
unsigned int mType;
AccountID mAccountID;