mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Remove unused Json::Value operator=
This commit is contained in:
@@ -240,17 +240,6 @@ public:
|
||||
Value&
|
||||
operator=(Value&& other);
|
||||
|
||||
template <typename T>
|
||||
Value&
|
||||
operator=(T const& rhs)
|
||||
requires(
|
||||
!std::is_convertible_v<T, Value> &&
|
||||
std::is_convertible_v<decltype(to_json(std::declval<T>())), Value>)
|
||||
{
|
||||
*this = to_json(rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Value(Value&& other) noexcept;
|
||||
|
||||
/// Swap values.
|
||||
|
||||
Reference in New Issue
Block a user