| 948 | //------------------------------------------------------------------------------ |
| 949 | |
| 950 | void vtkMPASReader::DestroyData() |
| 951 | |
| 952 | { |
| 953 | vtkDebugMacro(<< "DestroyData..."); |
| 954 | |
| 955 | this->Internals->cellArrays.clear(); |
| 956 | this->Internals->pointArrays.clear(); |
| 957 | |
| 958 | delete[] this->CellMap; |
| 959 | this->CellMap = nullptr; |
| 960 | |
| 961 | delete[] this->PointMap; |
| 962 | this->PointMap = nullptr; |
| 963 | |
| 964 | delete[] this->MaximumLevelPoint; |
| 965 | this->MaximumLevelPoint = nullptr; |
| 966 | } |
| 967 | |
| 968 | //------------------------------------------------------------------------------ |
| 969 | // Destructor for MPAS Reader |
no test coverage detected