MCPcopy Create free account
hub / github.com/QtExcel/QXlsx / ~DynArray2D

Method ~DynArray2D

HelloAndroid/DynArray2D.h:26–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24 T getValue(int n, int m) { return _array[n][m]; }
25
26 ~DynArray2D()
27 {
28 for (int i = 0; i < _n; i++) {
29 delete[] _array[i];
30 }
31 delete[] _array;
32 }
33
34protected:
35 T **_array;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected