diff --git a/test/array_cwise.cpp b/test/array_cwise.cpp index 81ee57280..5d23d0395 100644 --- a/test/array_cwise.cpp +++ b/test/array_cwise.cpp @@ -1056,9 +1056,9 @@ struct signed_shift_test_impl { static constexpr size_t Size = sizeof(Scalar); static constexpr size_t MaxShift = (CHAR_BIT * Size) - 1; - template + template static inline std::enable_if_t<(N > MaxShift), void> run(const ArrayType& ) {} - template + template static inline std::enable_if_t<(N <= MaxShift), void> run(const ArrayType& m) { const Index rows = m.rows(); const Index cols = m.cols();