Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COMP: Fix variable type and syntax errors
Fix expected variable type and syntax errors in `ITK_TEST_SET_GET_VALUE` calls. Fixes: ``` /Users/builder/externalModules/Filtering/ImageCompare/test/itkTestingComparisonImageFilterTest.cxx:71:21: error: called object type 'const char [55]' is not a function or function pointer TEST_SET_GET_VALUE(differenceThreshold, filter->GetDifferenceThreshold()); ~~~~~~~~~~~~~~~~~~^ /Users/builder/externalModules/Filtering/ImageCompare/test/itkTestingComparisonImageFilterTest.cxx:75:21: error: called object type 'const char [55]' is not a function or function pointer TEST_SET_GET_VALUE(toleranceRadius, filter->GetToleranceRadius()); ~~~~~~~~~~~~~~~~~~^ 2 errors generated. ``` and ``` /Users/builder/externalModules/Registration/Common/test/itkMattesMutualInformationImageToImageMetricTest.cxx:223:84: error: expected ';' after static_assert ITK_TEST_SET_GET_VALUE(numberOfHistogramBins, metric->GetNumberOfHistogramBins()) ^ ; ``` Raised for example in: https://open.cdash.org/viewBuildError.php?buildid=7679319
- Loading branch information