mirror of
https://github.com/nlohmann/json.git
synced 2026-02-22 11:26:25 +00:00
🚨 fixed some warnings #821
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user