Skip to content
Snippets Groups Projects
Verified Commit a51d09ee authored by Sankhesh Jhaveri's avatar Sankhesh Jhaveri :speech_balloon:
Browse files

COMP: Fix use of undeclared variables

parent ac5a1fb2
No related branches found
No related tags found
No related merge requests found
......@@ -432,7 +432,7 @@ int vtkSplitSharpEdgesPolyData::RequestData(vtkInformation* vtkNotUsed(request),
vtkSMPTools::For(0, functor.PointBatches.GetNumberOfBatches(), functor);
const vtkIdType numOutPoints = newToOldPointsMap->GetNumberOfIds();
vtkDebugMacro(<< "Created " << numNewPts - numPts << " new points");
vtkDebugMacro(<< "Created " << numOutPoints - numInPoints << " new points");
if (numOutPoints == numInPoints)
{
......
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