mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 10:55:57 +02:00
Fix non-rvalue Json::Value assignment operator (should copy, not move)
This commit is contained in:
parent
9a048e5766
commit
6a15ca6442
@ -327,10 +327,7 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
|
|
||||||
/// Deep copy, then swap(other).
|
/// Deep copy, then swap(other).
|
||||||
/// \note Over-write existing comments. To preserve comments, use #swapPayload().
|
/// \note Over-write existing comments. To preserve comments, use #swapPayload().
|
||||||
Value& operator=(const Value& other);
|
Value& operator=(Value other);
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
Value& operator=(Value&& other);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// Swap everything.
|
/// Swap everything.
|
||||||
void swap(Value& other);
|
void swap(Value& other);
|
||||||
|
@ -518,18 +518,10 @@ Value::~Value() {
|
|||||||
value_.uint_ = 0;
|
value_.uint_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Value& Value::operator=(const Value& other) {
|
Value& Value::operator=(Value other) {
|
||||||
swap(const_cast<Value&>(other));
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
Value& Value::operator=(Value&& other) {
|
|
||||||
initBasic(nullValue);
|
|
||||||
swap(other);
|
swap(other);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
void Value::swapPayload(Value& other) {
|
void Value::swapPayload(Value& other) {
|
||||||
ValueType temp = type_;
|
ValueType temp = type_;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user