From fc2e1a2b5a9e95aa59b98336dae8daa60076b35f Mon Sep 17 00:00:00 2001 From: Bronek Kozicki Date: Thu, 6 Mar 2025 15:14:01 +0000 Subject: [PATCH] Remove unused Json::Value operator= --- include/xrpl/json/json_value.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/xrpl/json/json_value.h b/include/xrpl/json/json_value.h index ccae3154d4..88057a6300 100644 --- a/include/xrpl/json/json_value.h +++ b/include/xrpl/json/json_value.h @@ -240,17 +240,6 @@ public: Value& operator=(Value&& other); - template - Value& - operator=(T const& rhs) - requires( - !std::is_convertible_v && - std::is_convertible_v())), Value>) - { - *this = to_json(rhs); - return *this; - } - Value(Value&& other) noexcept; /// Swap values.