Skip to content
Snippets Groups Projects
Commit 40e7f2a4 authored by Julien Michel's avatar Julien Michel
Browse files

WRG: Fix a bunch of clang warnings, mostly missing override

parent 468b8f1a
No related branches found
No related tags found
No related merge requests found
...@@ -157,7 +157,7 @@ public: ...@@ -157,7 +157,7 @@ public:
} }
void DoExecute() void DoExecute() ITK_OVERRIDE
{ {
TrainFileNamesHandler fileNames; TrainFileNamesHandler fileNames;
std::vector<std::string> vectorFileList; std::vector<std::string> vectorFileList;
......
...@@ -68,7 +68,7 @@ public: ...@@ -68,7 +68,7 @@ public:
throw (itk::InvalidRequestedRegionError) ITK_OVERRIDE; throw (itk::InvalidRequestedRegionError) ITK_OVERRIDE;
void UpdateOutputData(void) ITK_OVERRIDE; void UpdateOutputData(void) ITK_OVERRIDE;
void SetRequestedRegion(const itk::DataObject * source); void SetRequestedRegion(const itk::DataObject * source) ITK_OVERRIDE;
protected: protected:
/** Constructor */ /** Constructor */
......
...@@ -214,7 +214,7 @@ public: ...@@ -214,7 +214,7 @@ public:
const InputImageType* GetInput(); const InputImageType* GetInput();
/** Does the real work. */ /** Does the real work. */
virtual void Update(); virtual void Update() ITK_OVERRIDE;
/** SimpleParallelTiffWriter Methods */ /** SimpleParallelTiffWriter Methods */
virtual void SetFileName(const char* extendedFileName); virtual void SetFileName(const char* extendedFileName);
...@@ -255,7 +255,7 @@ public: ...@@ -255,7 +255,7 @@ public:
protected: protected:
SimpleParallelTiffWriter(); SimpleParallelTiffWriter();
virtual ~SimpleParallelTiffWriter(); virtual ~SimpleParallelTiffWriter();
void PrintSelf(std::ostream& os, itk::Indent indent) const; void PrintSelf(std::ostream& os, itk::Indent indent) const ITK_OVERRIDE;
private: private:
SimpleParallelTiffWriter(const SimpleParallelTiffWriter &); //purposely not implemented SimpleParallelTiffWriter(const SimpleParallelTiffWriter &); //purposely not implemented
......
...@@ -276,7 +276,7 @@ public: ...@@ -276,7 +276,7 @@ public:
bool autovalidateForwardModelFromGCPs(double resTol = 25); bool autovalidateForwardModelFromGCPs(double resTol = 25);
//Pure virtual in base class //Pure virtual in base class
bool useForward() const; bool useForward() const override;
void optimizeTimeOffsetsFromGcps(); void optimizeTimeOffsetsFromGcps();
...@@ -336,7 +336,7 @@ public: ...@@ -336,7 +336,7 @@ public:
virtual std::ostream& print(std::ostream& out) const override; virtual std::ostream& print(std::ostream& out) const override;
protected: protected:
TYPE_DATA; TYPE_DATA
/** /**
* Compute range and doppler frequency from an input point, sensor * Compute range and doppler frequency from an input point, sensor
......
...@@ -91,7 +91,7 @@ public: ...@@ -91,7 +91,7 @@ public:
void SetNthFileName( std::size_t, const std::string & ) override; void SetNthFileName( std::size_t, const std::string & ) override;
/** */ /** */
std::size_t SetStrings( const StringVector & ); std::size_t SetStrings( const StringVector & ) override;
/** */ /** */
std::size_t GetStrings( StringVector & ) const override; std::size_t GetStrings( StringVector & ) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment