Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COMP: Resolved compiler warnings for itktubeRadiusExtractor3.
1. An unused variable declaration was removed. 2. A variable 'p' was renaimed to 'point' to prevent it from shadowing another variable. This resolves the c=following compiler warnings: 1. /localscratch/Users/kjweimer/ITK/Modules/Remote/TubeTK/src/Segmentation/itktubeRadiusExtractor3.hxx:90:12: warning: unused variable ‘v’ [-Wunused-variable] 90 | double v = this->GetValue(p); | ^ 2. /localscratch/Users/kjweimer/ITK/Modules/Remote/TubeTK/src/Segmentation/itktubeRadiusExtractor3.hxx:395:19: warning: declaration of ‘p’ shadows a previous local [-Wshadow] 395 | PointType p; | ^ /localscratch/Users/kjweimer/ITK/Modules/Remote/TubeTK/src/Segmentation/itktubeRadiusExtractor3.hxx:349:13: note: shadowed declaration is here 349 | PointType p = pntIter->GetPositionInObjectSpace(); | ^
- Loading branch information