MCPcopy Create free account
hub / github.com/ShiqiYu/CPP / ~IntMat

Method ~IntMat

week13/examples/matclass.cpp:16–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected