| 360 | return *this; |
| 361 | } |
| 362 | EIGEN_DEVICE_FUNC DenseStorage(Index, Index rows, Index) : m_rows(rows) {} |
| 363 | EIGEN_DEVICE_FUNC void swap(DenseStorage& other) |
| 364 | { |
| 365 | internal::plain_array_helper::swap(m_data, m_rows * _Cols, other.m_data, other.m_rows * _Cols); |
no outgoing calls
no test coverage detected