Skip to content

Commit

Permalink
more mull
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed Dec 19, 2024
1 parent c644ae1 commit d006ce9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ mutators:
- cxx_lt_to_le # Replaces < with <=
timeout: 10000 # in milliseconds
quiet: true # additional logging?
# excludePaths:
# - test*
1 change: 1 addition & 0 deletions test/subarray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ auto main() -> int { // NOLINT(readability-function-cognitive-complexity,bugpro
multi::subarray<int, 2> R2D(A2D.begin(), A2D.end());
BOOST_TEST( R2D.addressof()== A2D.addressof() );
R2D[0][0] = 77;
BOOST_TEST( R2D[0][0] == 77 );
}

// {
Expand Down

0 comments on commit d006ce9

Please sign in to comment.