| 74 | } |
| 75 | |
| 76 | ~Matrix() { |
| 77 | print_destroyed(this, |
| 78 | std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); |
| 79 | delete[] m_data; |
| 80 | } |
| 81 | |
| 82 | Matrix &operator=(const Matrix &s) { |
| 83 | if (this == &s) { |
nothing calls this directly
no test coverage detected