| 848 | |
| 849 | template<typename Other> |
| 850 | void initAssignment(const Other& other) |
| 851 | { |
| 852 | resize(other.rows(), other.cols()); |
| 853 | if(m_innerNonZeros) |
| 854 | { |
| 855 | std::free(m_innerNonZeros); |
| 856 | m_innerNonZeros = 0; |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | /** \internal |
| 861 | * \sa insert(Index,Index) */ |