Skip to content
Snippets Groups Projects
Commit 0a7fefa1 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

ENH: add override and remove virtual from destrucotr

parent 2900fc2e
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ public:
StandardOneLineFilterWatcher();
/** Destrucotr */
virtual ~StandardOneLineFilterWatcher() =default;
~StandardOneLineFilterWatcher() override = default;
/** Get/Set number of stars */
void SetStars(int count)
......
......@@ -80,7 +80,7 @@ protected:
ProgressReporterManager();
/** Destructor. */
virtual ~ProgressReporterManager();
~ProgressReporterManager() override;
/** Load the watchers for internal progress and writing progress report. */
void LinkWatchers(itk::Object* caller, const itk::EventObject& event);
......
......@@ -69,7 +69,7 @@ protected:
PythonLogOutput() = default;
/** Destructor */
virtual ~PythonLogOutput() override = default;
~PythonLogOutput() override = default;
virtual void PrintSelf(std::ostream& os, itk::Indent indent) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment