| 187 | Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); } |
| 188 | |
| 189 | bool isRValue() const { return m_isRValue; } |
| 190 | Derived& markAsRValue() { m_isRValue = true; return derived(); } |
| 191 | |
| 192 | SparseMatrixBase() : m_isRValue(false) { /* TODO check flags */ } |
no outgoing calls
no test coverage detected