I am building ACVD using VTK 9 using MSVC (16.11.11) from Visual Studio 2019 for x64 architecture and the compilation failed due to the error "int to vtkIdType conversion" on line 119 in vtkVerticesProcessing.h.
It seems like easy fix. I just replace line 118 with
// int NumberOfEdges,Edges,i;
vtkIdType NumberOfEdges,Edges,i;
Hi ACVD developers,
I am building ACVD using VTK 9 using MSVC (16.11.11) from Visual Studio 2019 for x64 architecture and the compilation failed due to the error "int to vtkIdType conversion" on line 119 in vtkVerticesProcessing.h.
It seems like easy fix. I just replace line 118 with // int NumberOfEdges,Edges,i; vtkIdType NumberOfEdges,Edges,i;
Then, the complication is succesful.