Default/length/array constructor
| 4 | |
| 5 | // Default/length/array constructor |
| 6 | Array1::Array1(int length, long* data) : |
| 7 | _ownData(false), _length(0), _buffer(0) |
| 8 | { |
| 9 | resize(length, data); |
| 10 | } |
| 11 | |
| 12 | // Copy constructor |
| 13 | Array1::Array1(const Array1 & source) : |
no test coverage detected