| 671 | } |
| 672 | |
| 673 | void Realloc(vtkIdType sze) override |
| 674 | { |
| 675 | this->OutputArray->Resize(sze); |
| 676 | this->OutputArray->SetNumberOfTuples(sze); |
| 677 | this->Output = static_cast<TOutput*>(this->OutputArray->GetVoidPointer(0)); |
| 678 | } |
| 679 | }; |
| 680 | |
| 681 | // Forward declarations. This makes working with vtkTemplateMacro easier. |
nothing calls this directly
no test coverage detected