mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-01-21 02:00:33 +01:00
Value::removeMember arg "removed" is optional now (could be nullptr)
This commit is contained in:
parent
c27936e0aa
commit
1ec85c76a4
@ -1186,10 +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 (removed)
|
||||
#if JSON_HAS_RVALUE_REFERENCES
|
||||
*removed = std::move(it->second);
|
||||
*removed = std::move(it->second);
|
||||
#else
|
||||
*removed = it->second;
|
||||
*removed = it->second;
|
||||
#endif
|
||||
value_.map_->erase(it);
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user