1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00
Make our intent more clear in destruction
This commit is contained in:
Isaac Nickaein
2019-11-12 22:24:11 +03:30
parent 0f3ec003bb
commit 948f98cf4a
2 changed files with 8 additions and 2 deletions

View File

@ -15578,9 +15578,12 @@ class basic_json
{
stack.push_back(std::move(it.second));
}
current_item.m_value.object->clear();
}
// current_item is destroyed here
// it's now safe that current_item get destructed
// since it doesn't have any children
}
switch (t)