mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
Amalgamate Headers
This commit is contained in:
@ -20113,7 +20113,7 @@ class basic_json
|
|||||||
Thereby, `Target` is the current object; that is, the patch is applied to
|
Thereby, `Target` is the current object; that is, the patch is applied to
|
||||||
the current value.
|
the current value.
|
||||||
|
|
||||||
@param[in] patch the patch to apply
|
@param[in] apply_patch the patch to apply
|
||||||
|
|
||||||
@complexity Linear in the lengths of @a patch.
|
@complexity Linear in the lengths of @a patch.
|
||||||
|
|
||||||
@ -20125,15 +20125,15 @@ class basic_json
|
|||||||
|
|
||||||
@since version 3.0.0
|
@since version 3.0.0
|
||||||
*/
|
*/
|
||||||
void merge_patch(const basic_json& patch)
|
void merge_patch(const basic_json& apply_patch)
|
||||||
{
|
{
|
||||||
if (patch.is_object())
|
if (apply_patch.is_object())
|
||||||
{
|
{
|
||||||
if (not is_object())
|
if (not is_object())
|
||||||
{
|
{
|
||||||
*this = object();
|
*this = object();
|
||||||
}
|
}
|
||||||
for (auto it = patch.begin(); it != patch.end(); ++it)
|
for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it)
|
||||||
{
|
{
|
||||||
if (it.value().is_null())
|
if (it.value().is_null())
|
||||||
{
|
{
|
||||||
@ -20147,7 +20147,7 @@ class basic_json
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
*this = patch;
|
*this = apply_patch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user