------------------------------------------------------------------------------
| 2856 | |
| 2857 | //------------------------------------------------------------------------------ |
| 2858 | void vtkEnSight6BinaryReader::CleanUpCache() |
| 2859 | { |
| 2860 | if (this->UnstructuredPoints) |
| 2861 | { |
| 2862 | this->NumberOfUnstructuredPoints = 0; |
| 2863 | this->UnstructuredPoints->Delete(); |
| 2864 | this->UnstructuredPoints = nullptr; |
| 2865 | } |
| 2866 | if (this->UnstructuredNodeIds) |
| 2867 | { |
| 2868 | this->UnstructuredNodeIds->Delete(); |
| 2869 | this->UnstructuredNodeIds = nullptr; |
| 2870 | } |
| 2871 | } |
| 2872 | |
| 2873 | VTK_ABI_NAMESPACE_END |
no test coverage detected