From fcd51e54ec2df613950a524b0022485767b6554a Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Sat, 22 Feb 2020 18:42:55 -0600 Subject: [PATCH 1/2] ENH: Prefer https vs http for ctest submission. --- CTestConfig.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 62f68ac..efccad4 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -1,7 +1,7 @@ set(CTEST_PROJECT_NAME "ITK") set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC") -set(CTEST_DROP_METHOD "http") +set(CTEST_DROP_METHOD "https") set(CTEST_DROP_SITE "open.cdash.org") set(CTEST_DROP_LOCATION "/submit.php?project=Insight") set(CTEST_DROP_SITE_CDASH TRUE) From 6f0abebc2fc536da18809232ff86ca876fe2141b Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Wed, 28 May 2025 08:53:02 -0500 Subject: [PATCH 2/2] COMP: Fix clang-format errors --- include/itkShrinkDecimateImageFilter.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/itkShrinkDecimateImageFilter.hxx b/include/itkShrinkDecimateImageFilter.hxx index 76915ba..590b1fa 100644 --- a/include/itkShrinkDecimateImageFilter.hxx +++ b/include/itkShrinkDecimateImageFilter.hxx @@ -171,7 +171,7 @@ ShrinkDecimateImageFilter::GenerateInputRequestedRegi InputIndexType inputRequestedRegionIndex; OutputOffsetType offsetIndex; - typename TInputImage::SizeType inputRequestedRegionSize; + typename TInputImage::SizeType inputRequestedRegionSize; // Use this index to compute the offset everywhere in this class OutputIndexType outputIndex = outputPtr->GetLargestPossibleRegion().GetIndex(); @@ -180,7 +180,7 @@ ShrinkDecimateImageFilter::GenerateInputRequestedRegi // inputIndex on all points in our region typename TOutputImage::PointType tempPoint; outputPtr->TransformIndexToPhysicalPoint(outputIndex, tempPoint); - InputIndexType inputIndex { inputPtr->TransformPhysicalPointToIndex(tempPoint) }; + InputIndexType inputIndex{ inputPtr->TransformPhysicalPointToIndex(tempPoint) }; // Given that the size is scaled by a constant factor eq: // inputIndex = outputIndex * factorSize