| 657 | MyArray() { d = new double[5] { 0.0, 1.0, 2.0, 3.0, 4.0 }; } |
| 658 | ~MyArray() { delete[] d; } |
| 659 | double* data() const { return d; } |
| 660 | void mutate() { for (int i = 0; i < 5; ++i) d[i] += 0.5; } |
| 661 | }; |
| 662 |
no outgoing calls
no test coverage detected