From f3e93bbbeb79c3c97c5338f3aec0f9e8c3c0e7b0 Mon Sep 17 00:00:00 2001 From: seelabs Date: Tue, 24 Nov 2015 15:39:42 -0500 Subject: [PATCH] Add operator!= to STPathElement --- src/ripple/protocol/STPathSet.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ripple/protocol/STPathSet.h b/src/ripple/protocol/STPathSet.h index 0ae6abff5e..36968dc90a 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;