From eed18d16cebef94f0dd3ce5e5c201f23bbcdf9e5 Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Fri, 31 Jan 2025 16:37:29 -0500 Subject: [PATCH] Remove unnecessary ValueProxy friend operator != --- include/xrpl/protocol/STObject.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/xrpl/protocol/STObject.h b/include/xrpl/protocol/STObject.h index 0b4a70bb2e..075b3ed8ba 100644 --- a/include/xrpl/protocol/STObject.h +++ b/include/xrpl/protocol/STObject.h @@ -549,13 +549,6 @@ public: return rhs.value() == lhs; } - template - friend bool - operator!=(U const& lhs, STObject::ValueProxy const& rhs) - { - return !(lhs == rhs); - } - private: friend class STObject;