Skip to content
Snippets Groups Projects
Commit a423aea1 authored by T.J. Corona's avatar T.J. Corona Committed by Kitware Robot
Browse files

Merge topic 'decimate-polyline-filter'


2e2d32ae Suppressing signed/unsigned comparison warning in vtkDecimatePolylineFilter.

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Reviewed-by: default avatarUtkarsh Ayachit <utkarsh.ayachit@kitware.com>
Merge-request: !534
parents c5c1880a 2e2d32ae
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ public:
{
this->Size = size;
Vertices = new Vertex[size];
for (unsigned idx=0;idx<size;idx++)
for (vtkIdType idx=0;idx<size;idx++)
{
Vertices[idx].index = idx;
Vertices[idx].id = vertexOrdering[idx];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment