Value::removeMember moves the existing value to "removed" now

This commit is contained in:
Maxim Ky 2018-01-29 16:58:45 +03:00
parent edb4bdb7ec
commit c27936e0aa

View File

@ -1186,7 +1186,11 @@ bool Value::removeMember(const char* key, const char* cend, Value* removed)
ObjectValues::iterator it = value_.map_->find(actualKey);
if (it == value_.map_->end())
return false;
#if JSON_HAS_RVALUE_REFERENCES
*removed = std::move(it->second);
#else
*removed = it->second;
#endif
value_.map_->erase(it);
return true;
}