Skip to content

Commit

Permalink
STYLE: Remove std:: prefix from uint8_t in MathematicalMorphologyEnums
Browse files Browse the repository at this point in the history
Follow-up to pull request #3250
commit c173dfd
"STYLE: Remove `std::` prefix from types that work without it"
Lee Newberg, March 6, 2022.
  • Loading branch information
N-Dekker authored and dzenanz committed Jan 10, 2024
1 parent 3edf69b commit ed4b29d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include <iostream>
#include "ITKMathematicalMorphologyExport.h"
#include <cstdint>
#include "itkIntTypes.h"


namespace itk
Expand All @@ -39,7 +39,7 @@ class MathematicalMorphologyEnums
* \brief Algorithm or implementation used in the dilation/erosion operations.
* \ingroup ITKMathematicalMorphology
*/
enum class Algorithm : std::uint8_t
enum class Algorithm : uint8_t
{
BASIC = 0,
HISTO = 1,
Expand Down

0 comments on commit ed4b29d

Please sign in to comment.