Skip to content
Snippets Groups Projects
Commit ae76fd9d authored by David Doria's avatar David Doria
Browse files

BUG: Fixed set but not used warning.

The variable aNode was set but not used.

Change-Id: I35223d37bdc9e251acdf9fe79255e8ddd02809f5
parent 348de290
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ int vtkGraphAnnotationLayersFilter::RequestData(vtkInformation *vtkNotUsed(reque
++selectionNodeId)
{
vtkSmartPointer<vtkPoints> hullPoints = vtkSmartPointer<vtkPoints>::New();
vtkIdType aNode;
hullId++;
vtkSelectionNode* selectionNode = selection->GetNode(selectionNodeId);
if (selectionNode->GetFieldType() != vtkSelectionNode::VERTEX)
......@@ -200,7 +200,6 @@ int vtkGraphAnnotationLayersFilter::RequestData(vtkInformation *vtkNotUsed(reque
for (vtkIdType i = 0; i < numberOfNodePoints; ++i)
{
hullPoints->InsertNextPoint(inputPoints->GetPoint(vertexIds->GetValue(i)));
aNode = vertexIds->GetValue(i);
}
// Create filled polygon
......
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