Skip to content

Commit f28ff80

Browse files
jhlegarretadzenanz
authored andcommitted
DOC: Fix unbalanced grouping commands Doxygen warnings
Fix unbalanced grouping commands Doxygen warnings. Fixes: ``` Modules/Core/Common/include/itkAutoPointer.h:261: warning: unbalanced grouping commands ``` warnings across classes. The warning is raised when the Utilities/Doxygen/itkdoxygen.pl Doxygen Perl script processes the files at issue and starts a `/**@{` block that gets interrupted by an unexpected symbol (e.g. a brace) without being previously closed with the corresponding `/**@}*/` ending token. Raised for example in: https://open.cdash.org/viewBuildError.php?type=1&buildid=8344134
1 parent d1287b3 commit f28ff80

File tree

78 files changed

+99
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+99
-2
lines changed

Modules/Core/Common/include/itkAutoPointer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ TransferAutoPointer(TAutoPointerBase & pa, TAutoPointerDerived & pb)
254254
pb.ReleaseOwnership(); // pb Release Ownership and clears
255255
}
256256
}
257+
257258
} // end namespace itk
258259

259260
#endif

Modules/Core/Common/include/itkBSplineDerivativeKernelFunction.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ class ITK_TEMPLATE_EXPORT BSplineDerivativeKernelFunction : public KernelFunctio
186186
itkGenericExceptionMacro("Evaluate not implemented for spline order " << SplineOrder);
187187
}
188188
};
189+
189190
} // end namespace itk
190191

191192
#endif

Modules/Core/Common/include/itkBSplineInterpolationWeightFunction.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ class ITK_TEMPLATE_EXPORT BSplineInterpolationWeightFunction
122122
BSplineInterpolationWeightFunction() = default;
123123
~BSplineInterpolationWeightFunction() override = default;
124124
};
125+
125126
} // end namespace itk
126127

127128
#ifndef ITK_MANUAL_INSTANTIATION

Modules/Core/Common/include/itkBSplineKernelFunction.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ class ITK_TEMPLATE_EXPORT BSplineKernelFunction : public KernelFunctionBase<TRea
180180
itkGenericExceptionMacro("Evaluate not implemented for spline order " << SplineOrder);
181181
}
182182
};
183+
183184
} // end namespace itk
184185

185186
#endif

Modules/Core/Common/include/itkBackwardDifferenceOperator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class ITK_TEMPLATE_EXPORT BackwardDifferenceOperator : public NeighborhoodOperat
7373
this->FillCenteredDirectional(coeff);
7474
}
7575
};
76+
7677
} // namespace itk
7778

7879
#ifndef ITK_MANUAL_INSTANTIATION

Modules/Core/Common/include/itkBufferedImageNeighborhoodPixelAccessPolicy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ class BufferedImageNeighborhoodPixelAccessPolicy final
126126
{
127127
m_NeighborhoodAccessor.Set(imageBufferPointer + m_PixelIndexValue, pixelValue);
128128
}
129+
129130
};
130131

131132
} // namespace itk

Modules/Core/Common/include/itkCommonEnums.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ using IOFileModeType = CommonEnums::IOFileMode;
164164
using IOByteOrderType = CommonEnums::IOByteOrder;
165165
using CellGeometryType = CommonEnums::CellGeometry;
166166
#endif
167+
167168
// Define how to print enumeration
168169
extern ITKCommon_EXPORT std::ostream &
169170
operator<<(std::ostream & out, IOPixelEnum value);

Modules/Core/Common/include/itkConnectedImageNeighborhoodShape.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ namespace itk
8383
* \ingroup ImageIterators
8484
* \ingroup ITKCommon
8585
*/
86+
8687
template <unsigned int VImageDimension>
8788
class ConnectedImageNeighborhoodShape
8889
{
@@ -247,8 +248,8 @@ class ConnectedImageNeighborhoodShape
247248
{
248249
return (includeCenterPixel ? 1 : 0) + CalculateNumberOfConnectedNeighbors(maximumCityblockDistance);
249250
}
250-
};
251251

252+
};
252253

253254
/** Generates the offsets for a connected image neighborhood shape. */
254255
template <unsigned int VImageDimension, size_t VMaximumCityblockDistance, bool VIncludeCenterPixel>

Modules/Core/Common/include/itkConstantBoundaryImageNeighborhoodPixelAccessPolicy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ class ConstantBoundaryImageNeighborhoodPixelAccessPolicy final
144144
m_NeighborhoodAccessor.Set(imageBufferPointer + m_PixelIndexValue, pixelValue);
145145
}
146146
}
147-
};
148147

148+
};
149149

150150
} // namespace itk
151151

Modules/Core/Common/include/itkContinuousIndex.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class ITK_TEMPLATE_EXPORT ContinuousIndex : public Point<TCoordinate, VIndexDime
9090
(*this)[i] = static_cast<TCoordinate>(index[i]);
9191
}
9292
}
93+
9394
};
9495
} // namespace itk
9596

0 commit comments

Comments
 (0)