You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...ITK/Modules/Core/Common/include/itkImageBoundaryCondition.h:123: warning: argument 'outputRequestedRegion' of command @param is not found in the argument list of itk::ImageBoundaryCondition< TInputImage, TOutputImage >::GetInputRequestedRegion(const RegionType &inputLargestPossibleRegion, const RegionType &) const
In the function we see:
/** Determines the necessary input region for an output region given
* the largest possible region of the input image. Subclasses should
* override this method to efficiently support streaming.
*
* \param inputLargestPossibleRegion Largest possible region of the input image.
* \param outputRequestedRegion The output requested region.
* \return The necessary input region required to determine the
* pixel values in the outputRequestedRegion.
*/
virtual RegionType
GetInputRequestedRegion(const RegionType & inputLargestPossibleRegion,
[[maybe_unused]] const RegionType & itkNotUsed(outputRequestedRegion)) const
{
return inputLargestPossibleRegion;
}
and in the doxygen settings the PREDEFINED:
"itkNotUsed(x)="
In other words no variable present and hence the message.
The text was updated successfully, but these errors were encountered:
In the function we see:
and in the doxygen settings the
PREDEFINED
:In other words no variable present and hence the message.
The text was updated successfully, but these errors were encountered: