Skip to content

Commit

Permalink
STYLE: Fixes clang errors caused by clang-format-linter.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mseng10 authored and hjmjohnson committed Jun 19, 2020
1 parent f52174d commit 99fba4c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
16 changes: 8 additions & 8 deletions include/itkAnalyzeObjectEntry.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@

namespace itk
{
constexpr const char * const ANALYZE_OBJECT_LABEL_MAP_ENTRY_ARRAY{"ANALYZE_OBJECT_LABEL_MAP_ENTRY_ARRAY"};
constexpr const char * const ANALYZE_OBJECT_LABEL_MAP_ENTRY_ARRAY{ "ANALYZE_OBJECT_LABEL_MAP_ENTRY_ARRAY" };
/**
* Constants representing the current version number of the object map file for Analyze
*/
constexpr int VERSION1{880102};
constexpr int VERSION2{880801};
constexpr int VERSION3{890102};
constexpr int VERSION4{900302};
constexpr int VERSION5{910402};
constexpr int VERSION6{910926};
constexpr int VERSION7{20050829};
constexpr int VERSION1{ 880102 };
constexpr int VERSION2{ 880801 };
constexpr int VERSION3{ 890102 };
constexpr int VERSION4{ 900302 };
constexpr int VERSION5{ 910402 };
constexpr int VERSION6{ 910926 };
constexpr int VERSION7{ 20050829 };


/**
Expand Down
1 change: 0 additions & 1 deletion include/itkAnalyzeObjectLabelMapImageIOFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ class AnalyzeObjectLabelMap_EXPORT AnalyzeObjectLabelMapImageIOFactory : public
~AnalyzeObjectLabelMapImageIOFactory() override;
void
PrintSelf(std::ostream & os, Indent indent) const override;

};

} // end namespace itk
Expand Down
3 changes: 1 addition & 2 deletions include/itkAnalyzeObjectMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ using AnalyzeObjectEntryArrayType = std::vector<AnalyzeObjectEntry::Pointer>;
* \brief A class that is an image with functions that let the user change aspects of the class. This
* is a templated class where most everything will depend on the Image type that is used.
*/
template <class TImage = itk::Image<unsigned char, 4>,
class TRGBImage = itk::Image<itk::RGBPixel<unsigned char>, 4>>
template <class TImage = itk::Image<unsigned char, 4>, class TRGBImage = itk::Image<itk::RGBPixel<unsigned char>, 4>>
class ITK_TEMPLATE_EXPORT AnalyzeObjectMap : public TImage
{
public:
Expand Down
2 changes: 1 addition & 1 deletion src/itkAnalyzeObjectLabelMapImageIOFactory.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ AnalyzeObjectLabelMapImageIOFactory::GetDescription() const
static bool AnalyzeObjectLabelMapImageIOFactoryHasBeenRegistered{ false };

void AnalyzeObjectLabelMap_EXPORT
AnalyzeObjectLabelMapImageIOFactoryRegister__Private()
AnalyzeObjectLabelMapImageIOFactoryRegister__Private()
{
if (!AnalyzeObjectLabelMapImageIOFactoryHasBeenRegistered)
{
Expand Down

0 comments on commit 99fba4c

Please sign in to comment.