🚨 fixed some warnings #821

This commit is contained in:
Niels Lohmann 2017-11-25 22:06:18 +01:00
parent ea5aed0769
commit 430f03512c
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
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;
}