| 14 | data = new int[rows * cols]{}; |
| 15 | } |
| 16 | ~IntMat() |
| 17 | { |
| 18 | delete [] data; |
| 19 | } |
| 20 | IntMat(const IntMat&) = delete; |
| 21 | IntMat& operator=(const IntMat&) = delete; |
| 22 | int getElement(size_t r, size_t c); |
nothing calls this directly
no outgoing calls
no test coverage detected