Fix bitwise operation error when compiling as C++26

This commit is contained in:
Markus Vieth 2025-02-21 20:48:31 +01:00 committed by Charles Schlosser
parent e42dceb3a1
commit bddaa99e15

View File

@ -95,7 +95,8 @@ MatrixBase<Derived>::cross(const MatrixBase<OtherDerived>& other) const {
namespace internal {
template <int Arch, typename VectorLhs, typename VectorRhs, typename Scalar = typename VectorLhs::Scalar,
bool Vectorizable = bool((evaluator<VectorLhs>::Flags & evaluator<VectorRhs>::Flags) & PacketAccessBit)>
bool Vectorizable =
bool((int(evaluator<VectorLhs>::Flags) & int(evaluator<VectorRhs>::Flags)) & PacketAccessBit)>
struct cross3_impl {
EIGEN_DEVICE_FUNC static inline typename internal::plain_matrix_type<VectorLhs>::type run(const VectorLhs& lhs,
const VectorRhs& rhs) {