mirror of
https://github.com/nlohmann/json.git
synced 2025-01-21 17:43:25 +08:00
fixed off-by-one error
This commit is contained in:
parent
b0eb34394c
commit
2707733920
@ -5757,10 +5757,9 @@ class basic_json
|
||||
++anchor;
|
||||
++array_index;
|
||||
|
||||
first = calculate_key();
|
||||
|
||||
if (array_index < container_size)
|
||||
{
|
||||
first = calculate_key();
|
||||
second = *anchor;
|
||||
}
|
||||
|
||||
|
@ -5757,10 +5757,9 @@ class basic_json
|
||||
++anchor;
|
||||
++array_index;
|
||||
|
||||
first = calculate_key();
|
||||
|
||||
if (array_index < container_size)
|
||||
{
|
||||
first = calculate_key();
|
||||
second = *anchor;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user