Delete copy constructor to avoid accidental copying of 'heavy' data
| 176 | |
| 177 | // Delete copy constructor to avoid accidental copying of 'heavy' data |
| 178 | Vector(const Vector& x) = delete; |
| 179 | |
| 180 | /// Move constructor |
| 181 | Vector(Vector&& x) noexcept; |
nothing calls this directly
no outgoing calls
no test coverage detected