ensure that eigen::internal::size is not found by ADL, rename to ssize and...

(cherry picked from commit 9210e71fb3)
This commit is contained in:
Erik Schultheis
2022-01-05 00:46:09 +00:00
committed by Antonio Sánchez
parent 3af8c262ac
commit bd72e4a8c4
3 changed files with 24 additions and 11 deletions

View File

@@ -122,10 +122,10 @@ public:
{}
/** \returns number of rows */
Index rows() const { return internal::size(m_rowIndices); }
Index rows() const { return internal::index_list_size(m_rowIndices); }
/** \returns number of columns */
Index cols() const { return internal::size(m_colIndices); }
Index cols() const { return internal::index_list_size(m_colIndices); }
/** \returns the nested expression */
const typename internal::remove_all<XprType>::type&