Skip to content

Commit

Permalink
MacOS clang span issue
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wellbelove committed Sep 4, 2023
1 parent 5db82de commit fc63a51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_span_dynamic_extent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ namespace
TEST(test_construct_std_span_from_etl_span)
{
View view(etldata);
StdView stdview(view);
StdView stdview = StdView(view);

CHECK_EQUAL(stdview.size(), view.size());
CHECK_EQUAL(stdview.size(), view.size());
Expand Down
2 changes: 1 addition & 1 deletion test/test_span_fixed_extent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace
TEST(test_construct_std_span_from_etl_span)
{
View view(etldata);
StdView stdview(view);
StdView stdview = StdView(view);

CHECK_EQUAL(stdview.size(), view.size());
CHECK_EQUAL(stdview.size(), view.size());
Expand Down

0 comments on commit fc63a51

Please sign in to comment.