Skip to content

Commit

Permalink
COMP: Removed \deprecated Doxygen comment from some deprecated blocks…
Browse files Browse the repository at this point in the history
… of code

This is used for struct,classes and functions. Decided to not use \deprecated Doxygen command and [[deprecated]] at the same time.
  • Loading branch information
andrei-sandor committed Jun 14, 2024
1 parent 2132909 commit 3501777
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class ITK_TEMPLATE_EXPORT Image : public ImageBase<VImageDimension>
* example usage:
* using OutputImageType = typename ImageType::template Rebind< float >::Type;
*
* \deprecated Use RebindImageType instead
* Deprecated: Use RebindImageType instead
*/
template <typename UPixelType, unsigned int VUImageDimension = VImageDimension>
struct Rebind
Expand Down
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ITK_TEMPLATE_EXPORT Vector : public FixedArray<T, VVectorDimension>
/** Constructor to initialize entire vector to one value.
* \warning Not intended to convert a scalar value into
* a Vector filled with that value.
* \deprecated */
* Deprecated */
Vector(const ValueType & r);
#else
/** Constructor to initialize entire vector to one value,
Expand Down
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkVectorImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class ITK_TEMPLATE_EXPORT VectorImage : public ImageBase<VImageDimension>
\endcode
*
* \sa Image::Rebind
* \deprecated Use template alias RebindImageType instead
* Deprecated: Use template alias RebindImageType instead
*/
template <typename UPixelType, unsigned int VUImageDimension = VImageDimension>
struct Rebind
Expand Down
2 changes: 1 addition & 1 deletion Modules/Core/ImageAdaptors/include/itkImageAdaptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class ITK_TEMPLATE_EXPORT ImageAdaptor : public ImageBase<TImage::ImageDimension
* example usage:
* using OutputImageType = typename ImageAdaptorType::template Rebind< float >::Type;
*
* \deprecated Use RebindImageType instead
* Deprecated: Use RebindImageType instead
*/
template <typename UPixelType, unsigned int UImageDimension = TImage::ImageDimension>
struct Rebind
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ class ITK_TEMPLATE_EXPORT MatrixOffsetTransformBase
}

protected:
/** \deprecated Use GetInverse for public API instead.
/** Deprecated: Use GetInverse for public API instead.
* Method will eventually be made a protected member function */
const InverseMatrixType &
GetInverseMatrix() const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace Functor
{
/** \class Cast
*
* \deprecated This functor is no longer used by the CastImageFilter.
* Deprecated: This functor is no longer used by the CastImageFilter.
* \ingroup ITKImageFilterBase
*/

Expand Down

0 comments on commit 3501777

Please sign in to comment.