| 12 | |
| 13 | template <typename MatrixType> |
| 14 | std::enable_if_t<(MatrixType::RowsAtCompileTime==1 || MatrixType::ColsAtCompileTime==1),void> |
| 15 | check_index(const MatrixType& m) { |
| 16 | VERIFY_RAISES_ASSERT(m[0]); |
| 17 | VERIFY_RAISES_ASSERT((m+m)[0]); |
| 18 | } |
| 19 | |
| 20 | template <typename MatrixType> |
| 21 | std::enable_if_t<!(MatrixType::RowsAtCompileTime==1 || MatrixType::ColsAtCompileTime==1),void> |