Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove std:: prefix from uint8_t in MathematicalMorphologyEnums, replace <cstdint> with "itkIntTypes.h" #4387

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -19,12 +19,12 @@
#ifndef itkConnectedImageNeighborhoodShape_h
#define itkConnectedImageNeighborhoodShape_h

#include "itkIntTypes.h" // For uintmax_t
#include "itkMath.h"
#include "itkOffset.h"

#include <array>
#include <cassert>
#include <cstdint> // For uintmax_t
#include <limits>

namespace itk
Expand Down
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkSpatialOrientation.h
Expand Up @@ -28,7 +28,7 @@
#ifndef itkSpatialOrientation_h
#define itkSpatialOrientation_h

#include <cstdint>
#include "itkIntTypes.h"
#include <ostream>

#include "ITKCommonExport.h"
Expand Down
Expand Up @@ -18,11 +18,10 @@
#ifndef itkImageMaskSpatialObject_hxx
#define itkImageMaskSpatialObject_hxx

#include "itkIntTypes.h" // For uintmax_t.
#include "itkMath.h"
#include "itkImageRegionRange.h"

#include <cstdint> // For uintmax_t.

namespace itk
{

Expand Down
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