Skip to content

Commit 136cbf3

Browse files
committed
DOC: fixing "unbalanced grouping commands" warnings
review: inserted back some removed lines
1 parent 4f32d8e commit 136cbf3

File tree

71 files changed

+83
-1
lines changed

Some content is hidden

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

71 files changed

+83
-1
lines changed

Modules/Core/Common/include/itkBSplineDerivativeKernelFunction.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ class ITK_TEMPLATE_EXPORT BSplineDerivativeKernelFunction : public KernelFunctio
191191
}
192192
/**@ITKEndGrouping*/
193193
};
194+
194195
} // end namespace itk
195196

196197
#endif

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
@@ -75,6 +75,7 @@ class ITK_TEMPLATE_EXPORT BackwardDifferenceOperator : public NeighborhoodOperat
7575
}
7676
/**@ITKEndGrouping*/
7777
};
78+
7879
} // namespace itk
7980

8081
#ifndef ITK_MANUAL_INSTANTIATION

Modules/Core/Common/include/itkBufferedImageNeighborhoodPixelAccessPolicy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ class BufferedImageNeighborhoodPixelAccessPolicy final
130130
}
131131
/**@ITKEndGrouping*/
132132
};
133+
133134
} // namespace itk
134135

135136
#endif

Modules/Core/Common/include/itkConnectedImageNeighborhoodShape.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ class ConnectedImageNeighborhoodShape
124124
assert(offsets != nullptr);
125125
Offset<ImageDimension> offset;
126126
std::fill_n(offset.begin(), ImageDimension, -1);
127+
127128
size_t i = 0;
128129

129130
while (i < m_NumberOfOffsets)
@@ -246,6 +247,7 @@ class ConnectedImageNeighborhoodShape
246247
return (includeCenterPixel ? 1 : 0) + CalculateNumberOfConnectedNeighbors(maximumCityblockDistance);
247248
}
248249
};
250+
249251
/** Generates the offsets for a connected image neighborhood shape. */
250252
template <unsigned int VImageDimension, size_t VMaximumCityblockDistance, bool VIncludeCenterPixel>
251253
auto

Modules/Core/Common/include/itkConstantBoundaryImageNeighborhoodPixelAccessPolicy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ class ConstantBoundaryImageNeighborhoodPixelAccessPolicy final
148148
}
149149
/**@ITKEndGrouping*/
150150
};
151+
151152
} // namespace itk
152153

153154
#endif

Modules/Core/Common/include/itkContinuousIndex.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,5 @@ class ITK_TEMPLATE_EXPORT ContinuousIndex : public Point<TCoordinate, VIndexDime
9494
/**@ITKEndGrouping*/
9595
};
9696
} // namespace itk
97+
9798
#endif

Modules/Core/Common/include/itkCovariantVector.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ class ITK_TEMPLATE_EXPORT CovariantVector : public FixedArray<T, VVectorDimensio
257257
}
258258
}
259259
};
260+
260261
/** Premultiply Operator for product of a vector and a scalar.
261262
* CovariantVector< T, N > = T * CovariantVector< T,N > */
262263
template <typename T, unsigned int VVectorDimension>

Modules/Core/Common/include/itkDeref.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ Deref(T * const ptr)
5454
return *ptr;
5555
}
5656
} // namespace itk
57+
5758
#endif

Modules/Core/Common/include/itkExceptionObject.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ class ITKCommon_EXPORT MemoryAllocationError : public ExceptionObject
158158
/** \see LightObject::GetNameOfClass() */
159159
itkOverrideGetNameOfClassMacro(MemoryAllocationError);
160160
};
161+
161162
/** \class RangeError
162163
* Exception thrown when accessing memory out of range.
163164
* \ingroup ITKSystemObjects
@@ -172,6 +173,7 @@ class ITKCommon_EXPORT RangeError : public ExceptionObject
172173
/** \see LightObject::GetNameOfClass() */
173174
itkOverrideGetNameOfClassMacro(RangeError);
174175
};
176+
175177
/** \class InvalidArgumentError
176178
* Exception thrown when invalid argument is given to a method
177179
* or function.
@@ -187,6 +189,7 @@ class ITKCommon_EXPORT InvalidArgumentError : public ExceptionObject
187189
/** \see LightObject::GetNameOfClass() */
188190
itkOverrideGetNameOfClassMacro(InvalidArgumentError);
189191
};
192+
190193
/** \class IncompatibleOperandsError
191194
* Exception thrown when two operands are incompatible.
192195
* \ingroup ITKSystemObjects
@@ -201,6 +204,7 @@ class ITKCommon_EXPORT IncompatibleOperandsError : public ExceptionObject
201204
/** \see LightObject::GetNameOfClass() */
202205
itkOverrideGetNameOfClassMacro(IncompatibleOperandsError);
203206
};
207+
204208
/** \class ProcessAborted
205209
* Exception thrown when a filter (actually a ProcessObject) has been aborted.
206210
* \ingroup ITKSystemObjects
@@ -225,6 +229,7 @@ class ITKCommon_EXPORT ProcessAborted : public ExceptionObject
225229
/** \see LightObject::GetNameOfClass() */
226230
itkOverrideGetNameOfClassMacro(ProcessAborted);
227231
};
232+
228233
// Forward declaration in Macro.h, implementation here to avoid circular dependency
229234
template <typename TTarget, typename TSource>
230235
TTarget

0 commit comments

Comments
 (0)