Skip to content

Commit 2755549

Browse files
committed
GetOffsetsArrayAOS64 becomes GetOffsetsArray64 on vtk versions below 9.6
1 parent 4d11f48 commit 2755549

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Common/vtkSurfaceBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ vtkIdType &NumberOfVertices, vtkIdType* &Vertices)
453453
inline void vtkSurfaceBase::GetFaceVertices(const vtkIdType& face,
454454
vtkIdType &NumberOfVertices, vtkIdType* &Vertices)
455455
{
456-
#if ( (VTK_MAJOR_VERSION == 9) and (VTK_MINOR_VERSION < 1))
456+
#if ( (VTK_MAJOR_VERSION == 9) and (VTK_MINOR_VERSION < 6))
457457
auto connectivity = this->Polys->GetConnectivityArray64();
458458
auto offsets = this->Polys->GetOffsetsArray64();
459459
#else

0 commit comments

Comments
 (0)