1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-24 02:21:01 +03:00

🐛 fix bug in diff function #1983

This commit is contained in:
Niels Lohmann
2020-04-13 14:35:36 +02:00
parent b7be613b6e
commit dd04a32918
3 changed files with 10 additions and 2 deletions

View File

@ -22741,7 +22741,7 @@ class basic_json
result.push_back(
{
{"op", "add"},
{"path", path + "/" + std::to_string(i)},
{"path", path + "/-"},
{"value", target[i]}
});
++i;