| 179 | Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); } |
| 180 | |
| 181 | bool isRValue() const { return m_isRValue; } |
| 182 | Derived& markAsRValue() { m_isRValue = true; return derived(); } |
| 183 | |
| 184 | SparseMatrixBase() : m_isRValue(false) { /* TODO check flags */ } |
nothing calls this directly
no outgoing calls
no test coverage detected