----------------------------------------------------------------------------
| 814 | |
| 815 | //---------------------------------------------------------------------------- |
| 816 | vtkTypeBool vtkIOSSReader::ProcessRequest( |
| 817 | vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo) |
| 818 | { |
| 819 | const auto status = this->Superclass::ProcessRequest(request, inInfo, outInfo); |
| 820 | |
| 821 | auto& internals = (*this->Internals); |
| 822 | internals.ReleaseHandles(); |
| 823 | return status; |
| 824 | } |
| 825 | |
| 826 | //---------------------------------------------------------------------------- |
| 827 | template <typename T> |
nothing calls this directly
no test coverage detected