| 397 | return *this; |
| 398 | } |
| 399 | EIGEN_DEVICE_FUNC DenseStorage(Index, Index, Index cols) : m_cols(cols) {} |
| 400 | EIGEN_DEVICE_FUNC void swap(DenseStorage& other) { |
| 401 | internal::plain_array_helper::swap(m_data, _Rows * m_cols, other.m_data, _Rows * other.m_cols); |
| 402 | numext::swap(m_cols, other.m_cols); |
no outgoing calls
no test coverage detected