| 796 | # endif |
| 797 | |
| 798 | protected: |
| 799 | |
| 800 | template<typename Other> |
| 801 | void initAssignment(const Other& other) |
| 802 | { |
| 803 | resize(other.rows(), other.cols()); |
| 804 | if(m_innerNonZeros) |
| 805 | { |
| 806 | std::free(m_innerNonZeros); |
| 807 | m_innerNonZeros = 0; |
| 808 | } |
| 809 | } |
| 810 | |
| 811 | /** \internal |
| 812 | * \sa insert(Index,Index) */ |
no test coverage detected