Remove unused Json::Value operator=

This commit is contained in:
Bronek Kozicki
2025-03-06 15:14:01 +00:00
parent 1756fa7d08
commit fc2e1a2b5a

View File

@@ -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.