Skip to content

Commit

Permalink
Compiler support
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed May 23, 2024
1 parent ba20164 commit 116feb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/corelib/src/detail/span_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ TEST_CASE("jsoncons::detail::span constructor tests")
}
SECTION("jsoncons::detail::span(std::array)")
{
std::array<double,4> c = {1,2,3,4};
std::array<double,4> c = {{1,2,3,4}};

jsoncons::detail::span<double> s(c);
CHECK(s.size() == 4);
Expand Down

0 comments on commit 116feb0

Please sign in to comment.