Skip to content

Commit

Permalink
Merge pull request #2815 from jhlegarreta/DefaultOverrideVnl1DFFTClas…
Browse files Browse the repository at this point in the history
…sDestructors

ENH: Default override VNL 1D FFT class destructors
  • Loading branch information
thewtex authored Oct 15, 2021
2 parents f77befe + 9b74640 commit b1a0a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ class ITK_TEMPLATE_EXPORT VnlComplexToComplex1DFFTImageFilter
itkTypeMacro(VnlComplexToComplex1DFFTImageFilter, ComplexToComplex1DFFTImageFilter);

protected:
VnlComplexToComplex1DFFTImageFilter() {}
virtual ~VnlComplexToComplex1DFFTImageFilter() {}
VnlComplexToComplex1DFFTImageFilter() = default;
~VnlComplexToComplex1DFFTImageFilter() override = default;

void
GenerateData() override;
Expand Down
4 changes: 2 additions & 2 deletions Modules/Filtering/FFT/include/itkVnlForward1DFFTImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class ITK_TEMPLATE_EXPORT VnlForward1DFFTImageFilter : public Forward1DFFTImageF
void
GenerateData() override;

VnlForward1DFFTImageFilter() {}
virtual ~VnlForward1DFFTImageFilter() {}
VnlForward1DFFTImageFilter() = default;
~VnlForward1DFFTImageFilter() override = default;

private:
};
Expand Down

0 comments on commit b1a0a91

Please sign in to comment.