🚨 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;
}