Skip to content
Snippets Groups Projects
Commit 79c86cf4 authored by Sean McBride's avatar Sean McBride Committed by Code Review
Browse files

Merge topic 'TestPParticleTracers-unused' into master

a46f6116 Fixed unused variable warning in release
parents 4a36beff a46f6116
No related branches found
No related tags found
No related merge requests found
......@@ -376,11 +376,10 @@ int TestPParticlePathFilter(vtkMPIController* c, int staticOption)
traceMapper->Update();
vtkPolyData* out = filter->GetOutput();
vtkPoints* pts = out->GetPoints();
vtkPointData* pd = out->GetPointData();
for(int i=0; i<pd->GetNumberOfArrays();i++)
{
assert(pd->GetArray(i)->GetNumberOfTuples()==pts->GetNumberOfPoints());
assert(pd->GetArray(i)->GetNumberOfTuples()==out->GetPoints()->GetNumberOfPoints());
}
vtkCellArray* lines = out->GetLines();
......
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