mirror of
https://github.com/nlohmann/json.git
synced 2025-06-13 13:18:50 +08:00
👌 fix operator[]
This commit is contained in:
parent
04a0a07159
commit
e4af1ddb18
@ -3653,6 +3653,13 @@ class basic_json
|
|||||||
// fill up array with null values if given idx is outside range
|
// fill up array with null values if given idx is outside range
|
||||||
if (idx >= m_value.array->size())
|
if (idx >= m_value.array->size())
|
||||||
{
|
{
|
||||||
|
#if JSON_DIAGNOSTICS
|
||||||
|
// remember array size before resizing
|
||||||
|
const auto previous_size = m_value.array->size();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
m_value.array->resize(idx + 1);
|
||||||
|
|
||||||
#if JSON_DIAGNOSTICS
|
#if JSON_DIAGNOSTICS
|
||||||
// set parent for values added above
|
// set parent for values added above
|
||||||
for (auto i = previous_size; i <= idx; ++i)
|
for (auto i = previous_size; i <= idx; ++i)
|
||||||
|
Loading…
Reference in New Issue
Block a user