Commit 40e7f2a4 authored by Julien Michel's avatar Julien Michel
Browse files

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

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