1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-22 15:21:52 +03:00

🚨 fixed some warnings #821

This commit is contained in:
Niels Lohmann
2017-11-25 22:06:18 +01:00
parent ea5aed0769
commit 430f03512c
3 changed files with 14 additions and 13 deletions

View File

@ -1309,7 +1309,7 @@ TEST_CASE("regression tests")
SECTION("issue #843 - converting to array not working")
{
json j;
std::array<int, 4> ar = {1, 1, 1, 1};
std::array<int, 4> ar = {{1, 1, 1, 1}};
j = ar;
ar = j;
}