Skip to content

Commit b4dd786

Browse files
authored
Merge pull request #3 from hjmjohnson/itk6-add-semicolons
COMP: Add missing semicolons after ITK macros for ITK6 compat
2 parents 31551c1 + c413238 commit b4dd786

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

DiffusionComplexityMap/itkDiffusionComplexityMappingImageFilter.h

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ class ITK_EXPORT DiffusionComplexityMappingImageFilter:
5151
typedef SmartPointer< const Self > ConstPointer;
5252

5353
/** Method for creation through the object factory. */
54-
itkNewMacro(Self)
54+
itkNewMacro(Self);
5555

5656
/** Run-time type information (and related methods). */
57-
itkTypeMacro(DiffusionComplexityMappingImageFilter, ImageToImageFilter)
57+
itkTypeMacro(DiffusionComplexityMappingImageFilter, ImageToImageFilter);
5858

5959
typedef typename InputImageType::PixelType InputPixelType;
6060
typedef typename OutputImageType::PixelType OutputPixelType;
@@ -65,27 +65,27 @@ class ITK_EXPORT DiffusionComplexityMappingImageFilter:
6565
void SetDiffusionSpace(const TInputMask* mask);
6666

6767
/** Set the q value used in the entropy calculation. */
68-
itkSetMacro(QValue, float)
68+
itkSetMacro(QValue, float);
6969

7070
/** Choose if define the number of bins manually. */
71-
itkBooleanMacro(UseManualNumberOfBins)
72-
itkSetMacro(UseManualNumberOfBins, bool)
71+
itkBooleanMacro(UseManualNumberOfBins);
72+
itkSetMacro(UseManualNumberOfBins, bool);
7373

7474
/** Set the number of bins used in the entropy calculation. */
75-
itkSetMacro(HistogramBins, unsigned int)
75+
itkSetMacro(HistogramBins, unsigned int);
7676

7777
/** Debug mode is used to inform some messages in the standard output. */
78-
itkBooleanMacro(DebugMode)
79-
itkSetMacro(DebugMode, bool)
78+
itkBooleanMacro(DebugMode);
79+
itkSetMacro(DebugMode, bool);
8080

8181
/** Set the disequilibrium function used in the complexity calculation. */
82-
itkSetMacro(DisequilibriumFunction, unsigned char)
82+
itkSetMacro(DisequilibriumFunction, unsigned char);
8383

84-
itkGetMacro(QValue, float)
85-
itkGetMacro(HistogramBins, unsigned int)
86-
itkGetMacro(UseManualNumberOfBins, bool)
87-
itkGetMacro(DisequilibriumFunction, unsigned char)
88-
itkGetMacro(DebugMode, bool)
84+
itkGetMacro(QValue, float);
85+
itkGetMacro(HistogramBins, unsigned int);
86+
itkGetMacro(UseManualNumberOfBins, bool);
87+
itkGetMacro(DisequilibriumFunction, unsigned char);
88+
itkGetMacro(DebugMode, bool);
8989

9090
#ifdef ITK_USE_CONCEPT_CHECKING
9191
// Begin concept checking

0 commit comments

Comments
 (0)