Skip to content

Commit

Permalink
STYLE: Use override statements for C++11
Browse files Browse the repository at this point in the history
Describe function overrides using the override
keyword from C++11.

SRCDIR= #My local SRC
BLDDIR= #My local BLD

cd
run-clang-tidy.py -extra-arg=-D__clang__ -checks=-*,modernize-use-override  -header-filter=.* -fix
  • Loading branch information
hjmjohnson committed Mar 1, 2020
1 parent e53d779 commit 1ab6310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/itkStripTsImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ITK_TEMPLATE_EXPORT StripTsImageFilter : public ImageToImageFilter<TImageT

protected:
StripTsImageFilter();
~StripTsImageFilter();
~StripTsImageFilter() override;

// does the real work
void
Expand Down

0 comments on commit 1ab6310

Please sign in to comment.