Skip to content

Commit

Permalink
more mull
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed Dec 23, 2024
1 parent 320afb2 commit d649900
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mutators:
- cxx_bitwise_not_to_noop # Replaces ~x with x
- cxx_div_assign_to_mul_assign # Replaces /= with *=
- cxx_div_to_mul # Replaces / with *
- cxx_eq_to_ne # Replaces == with !=
#- cxx_eq_to_ne # Replaces == with !=
- cxx_ge_to_gt # Replaces >= with >
- cxx_ge_to_lt # Replaces >= with <
- cxx_gt_to_ge # Replaces > with >=
Expand Down
3 changes: 2 additions & 1 deletion test/redux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
#pragma GCC diagnostic ignored "-Wdouble-promotion"
#endif

#include <boost/multi/adaptors/blas.hpp> // IWYU pragma: keep
#include <boost/multi/array.hpp> // for array, implicit_cast, explicit_cast

#include <boost/multi/adaptors/blas.hpp> // IWYU pragma: keep

#include <boost/core/lightweight_test.hpp>

#include <algorithm> // IWYU pragma: keep
Expand Down

0 comments on commit d649900

Please sign in to comment.