diff --git a/src/ripple/protocol/STPathSet.h b/src/ripple/protocol/STPathSet.h index 0ae6abff5..36968dc90 100644 --- a/src/ripple/protocol/STPathSet.h +++ b/src/ripple/protocol/STPathSet.h @@ -165,6 +165,12 @@ public: mIssuerID == t.mIssuerID; } + bool + operator!= (const STPathElement& t) const + { + return !operator==(t); + } + private: unsigned int mType; AccountID mAccountID;