From 98d201ab4ecd61c6e18ea5057aa04f7136bad997 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Mon, 25 Nov 2024 08:32:38 -0600 Subject: [PATCH] COMP: unused variable 'numberOfPoints' A variable that is not used is removed. --- src/itkSWCMeshIO.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/itkSWCMeshIO.cxx b/src/itkSWCMeshIO.cxx index 0911b10..b2a71fb 100644 --- a/src/itkSWCMeshIO.cxx +++ b/src/itkSWCMeshIO.cxx @@ -236,7 +236,6 @@ ::ReadCells(void * buffer) auto * data = static_cast(buffer); // Skip root - const SizeValueType numberOfPoints = this->GetNumberOfPoints(); SizeValueType cellBufferIndex = 0; for (SizeValueType pointIndex = 1; pointIndex < this->GetNumberOfPoints(); ++pointIndex) {